mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 10:18:11 +00:00
VirtualConsole: Don't output the bell character.
This commit is contained in:
parent
87b10f6e6e
commit
2850225587
1 changed files with 3 additions and 0 deletions
|
@ -433,6 +433,9 @@ void VirtualConsole::on_char(byte ch)
|
|||
return;
|
||||
}
|
||||
break;
|
||||
case '\a':
|
||||
// FIXME: Bell!
|
||||
return;
|
||||
case '\t': {
|
||||
for (unsigned i = m_cursor_column; i < columns(); ++i) {
|
||||
if (m_horizontal_tabs[i]) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue