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

@ -19,6 +19,7 @@
*
****************************************************************************/
#include "plugin.h"
#include "lib/playback_control.h"
PLUGIN_HEADER
extern const fb_data superdom_boarditems[];
@ -714,7 +715,7 @@ int ingame_menu(void) {
int selection = 0;
MENUITEM_STRINGLIST(ingame_menu,"Super Domination Menu",NULL,
"Return to game","Save Game", "Quit");
"Return to game","Save Game","Playback Control", "Quit");
selection=rb->do_menu(&ingame_menu,&selection, NULL, false);
switch(selection) {
@ -728,6 +729,9 @@ int ingame_menu(void) {
rb->splash(HZ, "Error in save");
break;
case 2:
playback_control(NULL);
break;
case 3:
return SUPERDOM_QUIT;
break;
case MENU_ATTACHED_USB: