1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-02 23:12:08 +00:00

TTY: Properly implement echo in VirtualConsole.

VirtualConsole::echo now actually echoes characters
instead of doing nothing.
This commit is contained in:
Drew Stratford 2019-10-31 01:11:41 +13:00 committed by Andreas Kling
parent ed45f67c00
commit 378480e8e4
2 changed files with 8 additions and 1 deletions

View file

@ -545,6 +545,13 @@ StringView VirtualConsole::tty_name() const
return m_tty_name;
}
void VirtualConsole::echo(u8 ch)
{
if (should_echo_input()) {
on_tty_write(&ch, 1);
}
}
void VirtualConsole::set_vga_start_row(u16 row)
{
m_vga_start_row = row;