From c84f9252d70465069235bcd4776721a6eaefcdde Mon Sep 17 00:00:00 2001 From: Solomon Peachy Date: Sun, 19 Jul 2020 19:36:38 -0400 Subject: Fix the yellow in the player build from c39f95465 Change-Id: Iae3a8f4eccd3708b41d43da6e12a3199b1d657c6 --- apps/menus/main_menu.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'apps/menus') diff --git a/apps/menus/main_menu.c b/apps/menus/main_menu.c index 90c8c1d7fc..ee60b37497 100644 --- a/apps/menus/main_menu.c +++ b/apps/menus/main_menu.c @@ -532,9 +532,12 @@ MAKE_MENU(info_menu, ID2P(LANG_SYSTEM), 0, Icon_System_menu, #ifdef HAVE_LCD_CHARCELLS -static int mainmenu_callback(int action,const struct menu_item_ex *this_item) +static int mainmenu_callback(int action, + const struct menu_item_ex *this_item, + struct gui_synclist *lists) { (void)this_item; + (void)lists; switch (action) { case ACTION_ENTER_MENUITEM: -- cgit