summaryrefslogtreecommitdiff
path: root/apps/menu.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/menu.c')
-rw-r--r--apps/menu.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/apps/menu.c b/apps/menu.c
index 2a46e4f39e..0355fb1b0b 100644
--- a/apps/menu.c
+++ b/apps/menu.c
@@ -92,7 +92,6 @@ void redraw_cursor(void)
92 92
93/* 93/*
94 * Move the cursor to a particular id, 94 * Move the cursor to a particular id,
95 * current: where it is now
96 * target: where you want it to be 95 * target: where you want it to be
97 */ 96 */
98void put_cursor(int target) 97void put_cursor(int target)
@@ -196,18 +195,19 @@ void menu_draw(void)
196 195
197void show_splash(void) 196void show_splash(void)
198{ 197{
199#ifdef HAVE_LCD_BITMAP 198 char *rockbox = "ROCKbox!";
199
200 lcd_clear_display(); 200 lcd_clear_display();
201 201
202 if (show_logo() == 0) { 202#ifdef HAVE_LCD_BITMAP
203 lcd_update(); 203 if (show_logo() != 0)
204 busy_wait(); 204 return;
205 }
206#else 205#else
207 char *rockbox = "ROCKbox!";
208 lcd_puts(0, 0, rockbox); 206 lcd_puts(0, 0, rockbox);
209 busy_wait();
210#endif 207#endif
208
209 lcd_update();
210 busy_wait();
211} 211}
212 212
213 213