summaryrefslogtreecommitdiffstats
path: root/flash/bootbox/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'flash/bootbox/main.c')
-rw-r--r--flash/bootbox/main.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/flash/bootbox/main.c b/flash/bootbox/main.c
index 037ffb0b84..96020c3d00 100644
--- a/flash/bootbox/main.c
+++ b/flash/bootbox/main.c
@@ -115,7 +115,7 @@ void charging_screen(void)
break; /* start */
else
{
- if (usb_detect())
+ if (usb_detect() == USB_INSERTED)
break;
else if (!charger_inserted())
power_off(); /* charger removed: power down */
@@ -192,7 +192,7 @@ void main(void)
//disk_init();
usb_start_monitoring();
- while (usb_detect())
+ while (usb_detect() == USB_INSERTED)
{ /* enter USB mode early, before trying to mount */
if (button_get_w_tmo(HZ/10) == SYS_USB_CONNECTED)
{