cfb_console: Ignore bell character

Signed-off-by: Pali Rohár <pali.rohar@gmail.com>
This commit is contained in:
Pali Rohár 2012-04-28 07:26:47 +00:00 committed by Anatolij Gustschin
parent 90f60a81da
commit 24fe06cc6f

View File

@ -803,6 +803,9 @@ void video_putc(const char c)
console_back();
break;
case 7: /* bell */
break; /* ignored */
default: /* draw the char */
video_putchar(console_col * VIDEO_FONT_WIDTH,
console_row * VIDEO_FONT_HEIGHT, c);