summaryrefslogtreecommitdiff
path: root/apps/plugins/solitaire.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/solitaire.c')
-rw-r--r--apps/plugins/solitaire.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/apps/plugins/solitaire.c b/apps/plugins/solitaire.c
index c743634279..b830edf857 100644
--- a/apps/plugins/solitaire.c
+++ b/apps/plugins/solitaire.c
@@ -1060,8 +1060,11 @@ void solitaire_init(void);
1060enum { MENU_RESUME, MENU_SAVE_AND_QUIT, MENU_QUIT, MENU_USB }; 1060enum { MENU_RESUME, MENU_SAVE_AND_QUIT, MENU_QUIT, MENU_USB };
1061 1061
1062static bool _ingame; 1062static bool _ingame;
1063static int solitaire_menu_cb(int action, const struct menu_item_ex *this_item) 1063static int solitaire_menu_cb(int action,
1064 const struct menu_item_ex *this_item,
1065 struct gui_synclist *this_list)
1064{ 1066{
1067 (void)this_list;
1065 int i = (intptr_t)this_item; 1068 int i = (intptr_t)this_item;
1066 if( action == ACTION_REQUEST_MENUITEM ) 1069 if( action == ACTION_REQUEST_MENUITEM )
1067 { 1070 {