summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSolomon Peachy <pizza@shaftnet.org>2020-07-19 19:36:38 -0400
committerSolomon Peachy <pizza@shaftnet.org>2020-07-19 23:37:43 +0000
commitc84f9252d70465069235bcd4776721a6eaefcdde (patch)
tree4c7300f3bba42a68ece18a4536541e5bb536c3f9
parent6bb704c9d02612a201b82fe5e27439b1e07f0866 (diff)
downloadrockbox-c84f9252d70465069235bcd4776721a6eaefcdde.tar.gz
rockbox-c84f9252d70465069235bcd4776721a6eaefcdde.zip
Fix the yellow in the player build from c39f95465
Change-Id: Iae3a8f4eccd3708b41d43da6e12a3199b1d657c6
-rw-r--r--apps/menus/main_menu.c5
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,
532 532
533 533
534#ifdef HAVE_LCD_CHARCELLS 534#ifdef HAVE_LCD_CHARCELLS
535static int mainmenu_callback(int action,const struct menu_item_ex *this_item) 535static int mainmenu_callback(int action,
536 const struct menu_item_ex *this_item,
537 struct gui_synclist *lists)
536{ 538{
537 (void)this_item; 539 (void)this_item;
540 (void)lists;
538 switch (action) 541 switch (action)
539 { 542 {
540 case ACTION_ENTER_MENUITEM: 543 case ACTION_ENTER_MENUITEM: