Terminal: Uh, also change the one caller of beep() to sysbeep()..

This commit is contained in:
Andreas Kling 2019-05-17 14:34:07 +02:00
parent c081aae9b5
commit 3ec625067a
Notes: sideshowbarker 2024-07-19 14:04:52 +09:00

View File

@ -576,7 +576,7 @@ void Terminal::on_char(byte ch)
}
return;
case '\a':
beep();
sysbeep();
return;
case '\t': {
for (unsigned i = m_cursor_column; i < columns(); ++i) {