1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 12:27:34 +00:00

KeyboardDevice: Rename 0xe0 flag for clarity.

This commit is contained in:
Nufflee 2019-10-17 23:08:10 +02:00 committed by Andreas Kling
parent 0979f372a6
commit 7b6aba4284
2 changed files with 8 additions and 7 deletions

View file

@ -49,7 +49,7 @@ private:
u8 m_modifiers { 0 };
bool m_caps_lock_on { false };
bool m_num_lock_on { false };
bool m_is_numpad_key { false };
bool m_has_e0_prefix { false };
};
class KeyboardClient {