summaryrefslogtreecommitdiff
path: root/firmware/panic.c
diff options
context:
space:
mode:
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