diff options
author | Solomon Peachy <pizza@shaftnet.org> | 2020-07-19 19:36:38 -0400 |
---|---|---|
committer | Solomon Peachy <pizza@shaftnet.org> | 2020-07-19 23:37:43 +0000 |
commit | c84f9252d70465069235bcd4776721a6eaefcdde (patch) | |
tree | 4c7300f3bba42a68ece18a4536541e5bb536c3f9 /apps/menus | |
parent | 6bb704c9d02612a201b82fe5e27439b1e07f0866 (diff) |
Fix the yellow in the player build from c39f95465
Change-Id: Iae3a8f4eccd3708b41d43da6e12a3199b1d657c6
Diffstat (limited to 'apps/menus')
-rw-r--r-- | apps/menus/main_menu.c | 5 |
1 files changed, 4 insertions, 1 deletions
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: |