mirror of
https://github.com/RGBCube/serenity
synced 2025-05-14 08:04:57 +00:00
Kernel: Set correct KeyCode count
The underlying value of the `KeyCode::Key_*` enum values starts at 0, so we should add 1 to `Key_Menu` to get the correct count.
This commit is contained in:
parent
b7bce816b2
commit
015622bc22
2 changed files with 3 additions and 3 deletions
|
@ -152,7 +152,7 @@ enum KeyCode : u8 {
|
|||
Key_Shift
|
||||
= Key_LeftShift,
|
||||
};
|
||||
int const key_code_count = Key_Menu;
|
||||
size_t const key_code_count = Key_Menu + 1;
|
||||
|
||||
enum KeyModifier {
|
||||
Mod_None = 0x00,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue