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
Notes: sideshowbarker 2024-07-19 05:37:22 +09:00

View File

@ -235,7 +235,7 @@ void VirtualConsole::on_key_pressed(KeyboardDevice::Event event)
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)