summaryrefslogtreecommitdiff
path: root/apps/menus/menu_common.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/menus/menu_common.c')
-rw-r--r--apps/menus/menu_common.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/apps/menus/menu_common.c b/apps/menus/menu_common.c
index e8a2a91f12..2ef48cc23b 100644
--- a/apps/menus/menu_common.c
+++ b/apps/menus/menu_common.c
@@ -31,9 +31,12 @@
31 31
32#if CONFIG_CODEC == SWCODEC 32#if CONFIG_CODEC == SWCODEC
33/* Use this callback if your menu adjusts DSP settings. */ 33/* Use this callback if your menu adjusts DSP settings. */
34int lowlatency_callback(int action, const struct menu_item_ex *this_item) 34int lowlatency_callback(int action,
35 const struct menu_item_ex *this_item,
36 struct gui_synclist *this_list)
35{ 37{
36 (void)this_item; 38 (void)this_item;
39 (void)this_list;
37 switch (action) 40 switch (action)
38 { 41 {
39 case ACTION_ENTER_MENUITEM: /* on entering an item */ 42 case ACTION_ENTER_MENUITEM: /* on entering an item */