summaryrefslogtreecommitdiff
path: root/apps/plugins/mazezam.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/mazezam.c')
-rw-r--r--apps/plugins/mazezam.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/apps/plugins/mazezam.c b/apps/plugins/mazezam.c
index 759ca6477d..423b09288d 100644
--- a/apps/plugins/mazezam.c
+++ b/apps/plugins/mazezam.c
@@ -853,8 +853,11 @@ static void resume_save_data (struct resume_data *r, struct resume_data *old)
853* Manages the main menu 853* Manages the main menu
854******************************************************************************/ 854******************************************************************************/
855static bool have_continue; 855static bool have_continue;
856static int main_menu_cb(int action, const struct menu_item_ex *this_item) 856static int main_menu_cb(int action,
857 const struct menu_item_ex *this_item,
858 struct gui_synclist *this_list)
857{ 859{
860 (void)this_list;
858 if(action == ACTION_REQUEST_MENUITEM 861 if(action == ACTION_REQUEST_MENUITEM
859 && !have_continue && ((intptr_t)this_item)==0) 862 && !have_continue && ((intptr_t)this_item)==0)
860 return ACTION_EXIT_MENUITEM; 863 return ACTION_EXIT_MENUITEM;