summaryrefslogtreecommitdiff
path: root/apps/plugins/pegbox.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/pegbox.c')
-rw-r--r--apps/plugins/pegbox.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/apps/plugins/pegbox.c b/apps/plugins/pegbox.c
index b638f2feeb..e000e98d33 100644
--- a/apps/plugins/pegbox.c
+++ b/apps/plugins/pegbox.c
@@ -1316,8 +1316,12 @@ static bool pegbox_help(void)
1316* pegbox_menu() is the game menu 1316* pegbox_menu() is the game menu
1317************************************************************************/ 1317************************************************************************/
1318static bool _ingame; 1318static bool _ingame;
1319static int pegbox_menu_cb(int action, const struct menu_item_ex *this_item) 1319static int pegbox_menu_cb(int action,
1320 const struct menu_item_ex *this_item,
1321 struct gui_synclist *this_list)
1320{ 1322{
1323 (void)this_list;
1324
1321 int i = (intptr_t)this_item; 1325 int i = (intptr_t)this_item;
1322 if( action == ACTION_REQUEST_MENUITEM ) 1326 if( action == ACTION_REQUEST_MENUITEM )
1323 { 1327 {