summaryrefslogtreecommitdiff
path: root/apps/menus/eq_menu.c
diff options
context:
space:
mode:
authorWilliam Wilgus <wilgus.william@gmail.com>2020-07-19 13:42:04 -0400
committerWilliam Wilgus <me.theuser@yahoo.com>2020-07-19 22:10:26 +0000
commitc39f95465b9844f70f375f1690e0bf75c7ee7cc1 (patch)
tree2fda6bd805a74f41dd4303c7699eabb9e1aa4a1c /apps/menus/eq_menu.c
parent4663d94b4e4edec609b6a24581ee345f2a1bedaa (diff)
downloadrockbox-c39f95465b9844f70f375f1690e0bf75c7ee7cc1.tar.gz
rockbox-c39f95465b9844f70f375f1690e0bf75c7ee7cc1.zip
do_menu pass internal synclist reference to callback
keep running into the rigid nature of do_menu it isn't too bad when you don't need voice but once you do the fun awaits do_menu likes to talk on menu enter which is in a loop when you use do_menu I would like to move the processing to the callback TOO BAD you only get an action and the menu_item_ex struct you sent it when calling the function Change-Id: Iaefd0cc133435d675b7dd27a558c504d6ccb327a
Diffstat (limited to 'apps/menus/eq_menu.c')
-rw-r--r--apps/menus/eq_menu.c9
1 files changed, 6 insertions, 3 deletions
diff --git a/apps/menus/eq_menu.c b/apps/menus/eq_menu.c
index 7cbf7b5d90..b41e4b0981 100644
--- a/apps/menus/eq_menu.c
+++ b/apps/menus/eq_menu.c
@@ -81,16 +81,19 @@ static void eq_apply(void)
81 } 81 }
82} 82}
83 83
84static int eq_setting_callback(int action, const struct menu_item_ex *this_item) 84static int eq_setting_callback(int action,
85 const struct menu_item_ex *this_item,
86 struct gui_synclist *this_list)
85{ 87{
88 (void)this_list;
86 switch (action) 89 switch (action)
87 { 90 {
88 case ACTION_ENTER_MENUITEM: 91 case ACTION_ENTER_MENUITEM:
89 action = lowlatency_callback(action, this_item); 92 action = lowlatency_callback(action, this_item, NULL);
90 break; 93 break;
91 case ACTION_EXIT_MENUITEM: 94 case ACTION_EXIT_MENUITEM:
92 eq_apply(); 95 eq_apply();
93 action = lowlatency_callback(action, this_item); 96 action = lowlatency_callback(action, this_item, NULL);
94 break; 97 break;
95 } 98 }
96 99