From 15dbde1ab76cebd553e278a144e3e56d3b1f39d4 Mon Sep 17 00:00:00 2001 From: Thomas Martitz Date: Thu, 26 Feb 2009 17:10:27 +0000 Subject: 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 --- apps/plugins/superdom.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'apps/plugins/superdom.c') diff --git a/apps/plugins/superdom.c b/apps/plugins/superdom.c index 5d9cf7ff00..31f04b3b02 100644 --- a/apps/plugins/superdom.c +++ b/apps/plugins/superdom.c @@ -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: -- cgit v1.2.3