summaryrefslogtreecommitdiff
path: root/apps/plugins/chopper.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/chopper.c')
-rw-r--r--apps/plugins/chopper.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/apps/plugins/chopper.c b/apps/plugins/chopper.c
index 67fec2ed38..15333c4a99 100644
--- a/apps/plugins/chopper.c
+++ b/apps/plugins/chopper.c
@@ -24,6 +24,7 @@
24#include "lib/xlcd.h" 24#include "lib/xlcd.h"
25#include "lib/configfile.h" 25#include "lib/configfile.h"
26#include "lib/helper.h" 26#include "lib/helper.h"
27#include "lib/playback_control.h"
27 28
28PLUGIN_HEADER 29PLUGIN_HEADER
29 30
@@ -704,7 +705,7 @@ static int chopMenu(int menunum)
704 }; 705 };
705 706
706 MENUITEM_STRINGLIST(menu,"Chopper Menu",NULL,"Start New Game","Resume Game", 707 MENUITEM_STRINGLIST(menu,"Chopper Menu",NULL,"Start New Game","Resume Game",
707 "Level","Quit"); 708 "Level","Playback Control","Quit");
708 709
709#ifdef HAVE_LCD_COLOR 710#ifdef HAVE_LCD_COLOR
710 rb->lcd_set_foreground(LCD_WHITE); 711 rb->lcd_set_foreground(LCD_WHITE);
@@ -736,6 +737,9 @@ static int chopMenu(int menunum)
736 rb->set_option("Level", &iLevelMode, INT, levels, 2, NULL); 737 rb->set_option("Level", &iLevelMode, INT, levels, 2, NULL);
737 break; 738 break;
738 case 3: 739 case 3:
740 playback_control(NULL);
741 break;
742 case 4:
739 menu_quit=true; 743 menu_quit=true;
740 res = PLUGIN_OK; 744 res = PLUGIN_OK;
741 break; 745 break;