X-Git-Url: https://git.openpandora.org/cgi-bin/gitweb.cgi?p=pandora-u-boot.git;a=blobdiff_plain;f=common%2Flcd.c;fp=common%2Flcd.c;h=095dfd9a06587b4ec763aa32b81c209bdb7cb64a;hp=66d4f94f9eae0dcf8e8d57f9327f29b84f67019f;hb=89e9e9fa43ff4462c19175ddbee25b30f711235c;hpb=6a7b5bcfaa036b294f69a41e9c023fb90eb23f67 diff --git a/common/lcd.c b/common/lcd.c index 66d4f94f9e..095dfd9a06 100644 --- a/common/lcd.c +++ b/common/lcd.c @@ -163,8 +163,6 @@ static inline void console_back(void) } } - lcd_putc_xy(console_col * VIDEO_FONT_WIDTH, - console_row * VIDEO_FONT_HEIGHT, ' '); } /*----------------------------------------------------------------------*/ @@ -194,6 +192,9 @@ void lcd_putc(const char c) } switch (c) { + case '\a': /* I guess we'll just live without a bell, + we're just an lcd. Todo: visual bell? :P */ + return; case '\r': console_col = 0;