summaryrefslogtreecommitdiff
path: root/apps/plugins/fireworks.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/fireworks.c')
-rw-r--r--apps/plugins/fireworks.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/apps/plugins/fireworks.c b/apps/plugins/fireworks.c
index a33d0494f9..df2d998210 100644
--- a/apps/plugins/fireworks.c
+++ b/apps/plugins/fireworks.c
@@ -21,6 +21,7 @@
21#include "plugin.h" 21#include "plugin.h"
22#include "lib/oldmenuapi.h" 22#include "lib/oldmenuapi.h"
23#include "lib/helper.h" 23#include "lib/helper.h"
24#include "lib/playback_control.h"
24 25
25PLUGIN_HEADER 26PLUGIN_HEADER
26 27
@@ -289,6 +290,7 @@ static const struct menu_item items[] = {
289 { "Gravity", NULL }, 290 { "Gravity", NULL },
290 { "Show Rockets", NULL }, 291 { "Show Rockets", NULL },
291 { "FPS (Speed)", NULL }, 292 { "FPS (Speed)", NULL },
293 { "Playback Control", NULL },
292 { "Quit", NULL } 294 { "Quit", NULL }
293}; 295};
294 296
@@ -403,6 +405,10 @@ void fireworks_menu(void)
403 break; 405 break;
404 406
405 case 7: 407 case 7:
408 playback_control(NULL);
409 break;
410
411 case 8:
406 quit_plugin = true; 412 quit_plugin = true;
407 menu_quit = true; 413 menu_quit = true;
408 break; 414 break;