summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
Diffstat (limited to 'apps')
-rw-r--r--apps/menu.c2
-rw-r--r--apps/root_menu.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/apps/menu.c b/apps/menu.c
index 4b71cbf40a..4686289375 100644
--- a/apps/menu.c
+++ b/apps/menu.c
@@ -205,7 +205,7 @@ static void init_menu_lists(const struct menu_item_ex *menu,
205 current_subitems_count++; 205 current_subitems_count++;
206 } 206 }
207 } 207 }
208 current_submenus_menu = menu; 208 current_submenus_menu = (struct menu_item_ex *)menu;
209 209
210 gui_synclist_init(lists,get_menu_item_name,(void*)menu,false,1); 210 gui_synclist_init(lists,get_menu_item_name,(void*)menu,false,1);
211#ifdef HAVE_LCD_BITMAP 211#ifdef HAVE_LCD_BITMAP
diff --git a/apps/root_menu.c b/apps/root_menu.c
index 451d4007db..8a7daf4174 100644
--- a/apps/root_menu.c
+++ b/apps/root_menu.c
@@ -198,7 +198,7 @@ static int browser(void* param)
198static int menu(void* param) 198static int menu(void* param)
199{ 199{
200 (void)param; 200 (void)param;
201 return main_menu(); 201 return do_menu(NULL, 0);
202 202
203} 203}
204#ifdef HAVE_RECORDING 204#ifdef HAVE_RECORDING