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:
parent
af59e2ac31
commit
15dbde1ab7
11 changed files with 66 additions and 11 deletions
|
@ -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:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue