summaryrefslogtreecommitdiff
path: root/firmware/panic.c
diff options
context:
space:
mode:
authorBjörn Stenberg <bjorn@haxx.se>2002-08-11 09:17:47 +0000
committerBjörn Stenberg <bjorn@haxx.se>2002-08-11 09:17:47 +0000
commitcd225736f95555c7083b642675d013bff8057d76 (patch)
treeb3e1bde3e0a22f11911401ea232e553341aee40c /firmware/panic.c
parent13fdf7e5a5df4cd2f34615c15fddd56f92e84d91 (diff)
downloadrockbox-cd225736f95555c7083b642675d013bff8057d76.tar.gz
rockbox-cd225736f95555c7083b642675d013bff8057d76.zip
First version of loadable fonts patch by Alex Gitelman
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@1666 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/panic.c')
-rw-r--r--firmware/panic.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/firmware/panic.c b/firmware/panic.c
index f9023fe704..b130482495 100644
--- a/firmware/panic.c
+++ b/firmware/panic.c
@@ -8,7 +8,7 @@
8 * $Id$ 8 * $Id$
9 * 9 *
10 * Copyright (C) 2002 by wavey@wavey.org 10 * Copyright (C) 2002 by wavey@wavey.org
11 * 11 *nn
12 * All files in this archive are subject to the GNU General Public License. 12 * All files in this archive are subject to the GNU General Public License.
13 * See the file COPYING in the source tree root for full license agreement. 13 * See the file COPYING in the source tree root for full license agreement.
14 * 14 *
@@ -48,8 +48,9 @@ void panicf( char *fmt, ...)
48 lcd_puts(0,0,panic_buf); 48 lcd_puts(0,0,panic_buf);
49#elif defined(HAVE_LCD_BITMAP) 49#elif defined(HAVE_LCD_BITMAP)
50 lcd_clear_display(); 50 lcd_clear_display();
51 lcd_puts(0,0,panic_buf); 51 lcd_putsxy(0,0,panic_buf,0);
52 lcd_update(); 52 lcd_update();
53
53#else 54#else
54 /* no LCD */ 55 /* no LCD */
55#endif 56#endif