summaryrefslogtreecommitdiff
path: root/apps/plugins/battery_bench.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/battery_bench.c')
-rw-r--r--apps/plugins/battery_bench.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/apps/plugins/battery_bench.c b/apps/plugins/battery_bench.c
index b0976d5e10..289b399e27 100644
--- a/apps/plugins/battery_bench.c
+++ b/apps/plugins/battery_bench.c
@@ -358,11 +358,12 @@ static unsigned int charge_state(void)
358 ret |= BIT_CHARGING; 358 ret |= BIT_CHARGING;
359#endif 359#endif
360#endif 360#endif
361 /* USB insertion means nothing if USB cannot power the device */
361#ifdef HAVE_USB_POWER 362#ifdef HAVE_USB_POWER
362 if (rb->usb_powered()) 363 if (rb->usb_inserted())
363 ret |= BIT_USB_POWER; 364 ret |= BIT_USB_POWER;
364#endif 365#endif
365 return ret; 366 return ret;
366} 367}
367#endif 368#endif
368 369