1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 14:47:46 +00:00

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

View file

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