summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--bootloader/ipod.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/bootloader/ipod.c b/bootloader/ipod.c
index aa4d5ec73e..f274c82364 100644
--- a/bootloader/ipod.c
+++ b/bootloader/ipod.c
@@ -298,8 +298,15 @@ void fatal_error(void)
298{ 298{
299 bool holdstatus=false; 299 bool holdstatus=false;
300 300
301 /* System font is 6 pixels wide */
302#if LCD_WIDTH >= (30*6)
301 lcd_puts(0, line++, "Press MENU+SELECT to reboot"); 303 lcd_puts(0, line++, "Press MENU+SELECT to reboot");
302 lcd_puts(0, line++, "then SELECT+PLAY for disk mode"); 304 lcd_puts(0, line++, "then SELECT+PLAY for disk mode");
305#else
306 lcd_puts(0, line++, "Press MENU+SELECT to");
307 lcd_puts(0, line++, "reboot then SELECT+PLAY");
308 lcd_puts(0, line++, "for disk mode");
309#endif
303 lcd_update(); 310 lcd_update();
304 311
305 while (1) { 312 while (1) {