1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 04:37:34 +00:00

Kernel: Replace char and u8 data types to u32 for code point

Remove character property from event and add code_point property.
This commit is contained in:
Hüseyin ASLITÜRK 2020-06-11 21:26:05 +03:00 committed by Andreas Kling
parent 1887e35dc8
commit 174987f930
4 changed files with 10 additions and 10 deletions

View file

@ -161,7 +161,7 @@ enum KeyModifier {
struct KeyEvent {
KeyCode key { Key_Invalid };
u32 scancode { 0 };
u8 character { 0 };
u32 code_point { 0 };
u8 flags { 0 };
bool caps_lock_on { false };
bool e0_prefix { false };