summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--bootloader/main-pp.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/bootloader/main-pp.c b/bootloader/main-pp.c
index dfb343c2da..df0a535572 100644
--- a/bootloader/main-pp.c
+++ b/bootloader/main-pp.c
@@ -464,6 +464,11 @@ void* main(void)
464 } 464 }
465 465
466 btn = button_read_device(); 466 btn = button_read_device();
467
468 /* Enable bootloader messages if any button is pressed */
469 if (btn)
470 verbose = true;
471
467#if defined(SANSA_E200) || defined(SANSA_C200) 472#if defined(SANSA_E200) || defined(SANSA_C200)
468#if !defined(USE_ROCKBOX_USB) 473#if !defined(USE_ROCKBOX_USB)
469 usb_init(); 474 usb_init();
@@ -477,9 +482,6 @@ void* main(void)
477 btn |= BOOTLOADER_BOOT_OF; 482 btn |= BOOTLOADER_BOOT_OF;
478#endif /* USE_ROCKBOX_USB */ 483#endif /* USE_ROCKBOX_USB */
479#endif 484#endif
480 /* Enable bootloader messages if any button is pressed */
481 if (btn)
482 verbose = true;
483 485
484 lcd_setfont(FONT_SYSFIXED); 486 lcd_setfont(FONT_SYSFIXED);
485 487