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

Kernel: TTY:VirtualConsole, replace character attribute with code_point

This commit is contained in:
Hüseyin ASLITÜRK 2020-06-09 20:41:04 +03:00 committed by Andreas Kling
parent 7abca30f41
commit 00edc89288

View file

@ -235,7 +235,7 @@ void VirtualConsole::on_key_pressed(KeyboardDevice::Event event)
return; return;
} }
m_terminal.handle_key_press(event.key, event.character, event.flags); m_terminal.handle_key_press(event.key, event.code_point, event.flags);
} }
ssize_t VirtualConsole::on_tty_write(const u8* data, ssize_t size) ssize_t VirtualConsole::on_tty_write(const u8* data, ssize_t size)