summaryrefslogtreecommitdiff
path: root/apps/plugins/rockboy/menu.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/rockboy/menu.c')
-rw-r--r--apps/plugins/rockboy/menu.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/apps/plugins/rockboy/menu.c b/apps/plugins/rockboy/menu.c
index 6fafdc11a6..caa8d499cb 100644
--- a/apps/plugins/rockboy/menu.c
+++ b/apps/plugins/rockboy/menu.c
@@ -83,9 +83,8 @@ int do_user_menu(void) {
83 rb->lcd_set_mode(LCD_MODE_RGB565); 83 rb->lcd_set_mode(LCD_MODE_RGB565);
84#endif 84#endif
85 85
86#ifdef HAVE_BACKLIGHT
87 backlight_use_settings(); 86 backlight_use_settings();
88#endif 87
89 /* Clean out the button Queue */ 88 /* Clean out the button Queue */
90 while (rb->button_get(false) != BUTTON_NONE) 89 while (rb->button_get(false) != BUTTON_NONE)
91 rb->yield(); 90 rb->yield();
@@ -139,10 +138,9 @@ int do_user_menu(void) {
139 rb->lcd_set_mode(LCD_MODE_PAL256); 138 rb->lcd_set_mode(LCD_MODE_PAL256);
140#endif 139#endif
141 140
142#ifdef HAVE_BACKLIGHT
143 /* ignore backlight time out */ 141 /* ignore backlight time out */
144 backlight_ignore_timeout(); 142 backlight_ignore_timeout();
145#endif 143
146 return ret; 144 return ret;
147} 145}
148 146