mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-22 10:19:20 +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
Notes:
sideshowbarker
2024-07-19 11:30:09 +09:00
Author: https://github.com/DrewStratford
Commit: 378480e8e4
Pull-request: https://github.com/SerenityOS/serenity/pull/699
2 changed files with 8 additions and 1 deletions
|
@ -33,7 +33,7 @@ private:
|
|||
// ^TTY
|
||||
virtual ssize_t on_tty_write(const u8*, ssize_t) override;
|
||||
virtual StringView tty_name() const override;
|
||||
virtual void echo(u8) override { return; }
|
||||
virtual void echo(u8) override;
|
||||
|
||||
// ^CharacterDevice
|
||||
virtual const char* class_name() const override { return "VirtualConsole"; }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue