diff options
author | Aatos Majava <aatos.majava@protonmail.com> | 2022-01-04 19:13:55 +0200 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2022-01-04 17:57:54 +0000 |
commit | d17dca5c91a66aabc2413d3f9fdf326270b0d566 (patch) | |
tree | d057b9903ce7301f9b5ab57d46a7c29674166807 /Kernel/API | |
parent | a362a959121e287b7f93d5217d2421a7b53d9fb9 (diff) | |
download | serenity-d17dca5c91a66aabc2413d3f9fdf326270b0d566.zip |
Kernel: Update key_code_count
This was not updated when the Menu button was added.
Diffstat (limited to 'Kernel/API')
-rw-r--r-- | Kernel/API/KeyCode.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Kernel/API/KeyCode.h b/Kernel/API/KeyCode.h index b656b1aae8..a212bdd65f 100644 --- a/Kernel/API/KeyCode.h +++ b/Kernel/API/KeyCode.h @@ -125,7 +125,7 @@ enum KeyCode : u8 { Key_Shift = Key_LeftShift, }; -const int key_code_count = Key_Super; +const int key_code_count = Key_Menu; enum KeyModifier { Mod_None = 0x00, |