summaryrefslogtreecommitdiff
path: root/apps/menus/settings_menu.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/menus/settings_menu.c')
-rw-r--r--apps/menus/settings_menu.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/menus/settings_menu.c b/apps/menus/settings_menu.c
index 95423a20fa..23807e2adc 100644
--- a/apps/menus/settings_menu.c
+++ b/apps/menus/settings_menu.c
@@ -173,7 +173,7 @@ MENUITEM_SETTING(battery_capacity, &global_settings.battery_capacity, NULL);
173#if BATTERY_TYPES_COUNT > 1 173#if BATTERY_TYPES_COUNT > 1
174MENUITEM_SETTING(battery_type, &global_settings.battery_type, NULL); 174MENUITEM_SETTING(battery_type, &global_settings.battery_type, NULL);
175#endif 175#endif
176#ifdef HAVE_USB_CHARGING_ENABLE 176#if defined (HAVE_USBSTACK) && defined(HAVE_USB_CHARGING_ENABLE)
177static int usbcharging_callback(int action,const struct menu_item_ex *this_item) 177static int usbcharging_callback(int action,const struct menu_item_ex *this_item)
178{ 178{
179 (void)this_item; 179 (void)this_item;
@@ -194,7 +194,7 @@ MAKE_MENU(battery_menu, ID2P(LANG_BATTERY_MENU), 0, Icon_NOICON,
194#if BATTERY_TYPES_COUNT > 1 194#if BATTERY_TYPES_COUNT > 1
195 &battery_type, 195 &battery_type,
196#endif 196#endif
197#ifdef HAVE_USB_CHARGING_ENABLE 197#if defined (HAVE_USBSTACK) && defined(HAVE_USB_CHARGING_ENABLE)
198 &usb_charging, 198 &usb_charging,
199#endif 199#endif
200 ); 200 );