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:
parent
ed45f67c00
commit
378480e8e4
2 changed files with 8 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue