mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-10-14 02:27:39 -04:00
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:
parent
af59e2ac31
commit
15dbde1ab7
11 changed files with 66 additions and 11 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue