summaryrefslogtreecommitdiff
path: root/firmware/panic.c
diff options
context:
space:
mode:
authorSolomon Peachy <pizza@shaftnet.org>2020-07-17 10:31:31 -0400
committerSolomon Peachy <pizza@shaftnet.org>2020-07-24 21:20:13 +0000
commit658026e6267277b27d297c481728f74d160a8481 (patch)
tree915a9d2bb48469bdd5b9127dc19a61f230721a6c /firmware/panic.c
parent8cb555460ff79e636a7907fb2589e16db98c8600 (diff)
downloadrockbox-658026e6267277b27d297c481728f74d160a8481.tar.gz
rockbox-658026e6267277b27d297c481728f74d160a8481.zip
[4/4] Remove HAVE_LCD_BITMAP, as it's now the only choice.
Note: I left behind lcd_bitmap in features.txt, because removing it would require considerable work in the manual and the translations. Change-Id: Ia8ca7761f610d9332a0d22a7d189775fb15ec88a
Diffstat (limited to 'firmware/panic.c')
-rw-r--r--firmware/panic.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/firmware/panic.c b/firmware/panic.c
index 358be42924..fcfa8b2bb8 100644
--- a/firmware/panic.c
+++ b/firmware/panic.c
@@ -86,7 +86,6 @@ void panicf( const char *fmt, ...)
86 86
87 lcd_set_viewport(NULL); 87 lcd_set_viewport(NULL);
88 88
89#if defined(HAVE_LCD_BITMAP)
90 int y = 1; 89 int y = 1;
91 90
92#if LCD_DEPTH > 1 91#if LCD_DEPTH > 1
@@ -116,9 +115,6 @@ void panicf( const char *fmt, ...)
116#ifdef ROCKBOX_HAS_LOGF 115#ifdef ROCKBOX_HAS_LOGF
117 logf_panic_dump(&y); 116 logf_panic_dump(&y);
118#endif 117#endif
119#else
120 /* no LCD */
121#endif
122 118
123 lcd_update(); 119 lcd_update();
124 DEBUGF("%s", panic_buf); 120 DEBUGF("%s", panic_buf);