summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--bootloader/main-pp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/bootloader/main-pp.c b/bootloader/main-pp.c
index 0f85404fc7..960e570889 100644
--- a/bootloader/main-pp.c
+++ b/bootloader/main-pp.c
@@ -68,7 +68,7 @@ void* main(void)
68 btn = button_read_device(); 68 btn = button_read_device();
69 69
70 /* Enable bootloader messages */ 70 /* Enable bootloader messages */
71 if (btn==BOOTLOADER_VERBOSE) 71 if (btn & BOOTLOADER_VERBOSE)
72 verbose = true; 72 verbose = true;
73 73
74 lcd_setfont(FONT_SYSFIXED); 74 lcd_setfont(FONT_SYSFIXED);
@@ -103,7 +103,7 @@ void* main(void)
103 pinfo = disk_partinfo(0); 103 pinfo = disk_partinfo(0);
104 printf("Partition 0: 0x%02x %ld MB", pinfo->type, pinfo->size / 2048); 104 printf("Partition 0: 0x%02x %ld MB", pinfo->type, pinfo->size / 2048);
105 105
106 if(btn==BOOTLOADER_BOOT_OF) 106 if(btn & BOOTLOADER_BOOT_OF)
107 { 107 {
108 /* Load original mi4 firmware. This expects a file called 108 /* Load original mi4 firmware. This expects a file called
109 "/System/OF.bin" on the player. It should be a mi4 firmware decrypted 109 "/System/OF.bin" on the player. It should be a mi4 firmware decrypted