summaryrefslogtreecommitdiff
path: root/apps/plugins/clix.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/clix.c')
-rw-r--r--apps/plugins/clix.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/apps/plugins/clix.c b/apps/plugins/clix.c
index e80fdeab8b..748090358c 100644
--- a/apps/plugins/clix.c
+++ b/apps/plugins/clix.c
@@ -744,8 +744,11 @@ static bool clix_help(void)
744} 744}
745 745
746static bool _ingame; 746static bool _ingame;
747static int clix_menu_cb(int action, const struct menu_item_ex *this_item) 747static int clix_menu_cb(int action,
748 const struct menu_item_ex *this_item,
749 struct gui_synclist *this_list)
748{ 750{
751 (void)this_list;
749 if(action == ACTION_REQUEST_MENUITEM 752 if(action == ACTION_REQUEST_MENUITEM
750 && !_ingame && ((intptr_t)this_item)==0) 753 && !_ingame && ((intptr_t)this_item)==0)
751 return ACTION_EXIT_MENUITEM; 754 return ACTION_EXIT_MENUITEM;