mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-26 09:30:24 +00:00
Kernel: Evaluate block conditions inside VirtualConsole::emit()
This makes text mode boot usable again, because the shell never received keyboard input otherwise.
This commit is contained in:
parent
8941d831bb
commit
adb2fae69c
Notes:
sideshowbarker
2024-07-18 22:55:05 +09:00
Author: https://github.com/boricj Commit: https://github.com/SerenityOS/serenity/commit/adb2fae69cf Pull-request: https://github.com/SerenityOS/serenity/pull/5070
1 changed files with 1 additions and 1 deletions
|
@ -335,7 +335,7 @@ void VirtualConsole::terminal_history_changed()
|
|||
void VirtualConsole::emit(const u8* data, size_t size)
|
||||
{
|
||||
for (size_t i = 0; i < size; i++)
|
||||
TTY::emit(data[i]);
|
||||
TTY::emit(data[i], true);
|
||||
}
|
||||
|
||||
String VirtualConsole::device_name() const
|
||||
|
|
Loading…
Reference in a new issue