summaryrefslogtreecommitdiff
path: root/apps/main_menu.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/main_menu.c')
-rw-r--r--apps/main_menu.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/apps/main_menu.c b/apps/main_menu.c
index cf31e74961..9a31687500 100644
--- a/apps/main_menu.c
+++ b/apps/main_menu.c
@@ -37,6 +37,7 @@
37#include "power.h" 37#include "power.h"
38#include "powermgmt.h" 38#include "powermgmt.h"
39#include "sound_menu.h" 39#include "sound_menu.h"
40#include "status.h"
40 41
41#include "lang.h" 42#include "lang.h"
42 43
@@ -241,11 +242,11 @@ bool main_menu(void)
241 242
242 m=menu_init( items, sizeof items / sizeof(struct menu_items) ); 243 m=menu_init( items, sizeof items / sizeof(struct menu_items) );
243#ifdef HAVE_LCD_CHARCELLS 244#ifdef HAVE_LCD_CHARCELLS
244 lcd_icon(ICON_PARAM, true); 245 status_set_param(true);
245#endif 246#endif
246 result = menu_run(m); 247 result = menu_run(m);
247#ifdef HAVE_LCD_CHARCELLS 248#ifdef HAVE_LCD_CHARCELLS
248 lcd_icon(ICON_PARAM, false); 249 status_set_param(false);
249#endif 250#endif
250 menu_exit(m); 251 menu_exit(m);
251 252