1
0
Fork 0
forked from len0rd/rockbox

Accept the first patch at FS#9953 - Add Playback Control to more plugins, by Joshua Simmons

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@20111 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Thomas Martitz 2009-02-26 17:10:27 +00:00
parent af59e2ac31
commit 15dbde1ab7
11 changed files with 66 additions and 11 deletions

View file

@ -21,6 +21,7 @@
#include "plugin.h"
#include "lib/oldmenuapi.h"
#include "lib/helper.h"
#include "lib/playback_control.h"
PLUGIN_HEADER
@ -289,6 +290,7 @@ static const struct menu_item items[] = {
{ "Gravity", NULL },
{ "Show Rockets", NULL },
{ "FPS (Speed)", NULL },
{ "Playback Control", NULL },
{ "Quit", NULL }
};
@ -403,6 +405,10 @@ void fireworks_menu(void)
break;
case 7:
playback_control(NULL);
break;
case 8:
quit_plugin = true;
menu_quit = true;
break;