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
|
@ -23,6 +23,8 @@
|
|||
|
||||
#ifdef HAVE_LCD_BITMAP
|
||||
|
||||
#include "lib/playback_control.h"
|
||||
|
||||
PLUGIN_HEADER
|
||||
|
||||
/* what the minesweeper() function can return */
|
||||
|
@ -548,7 +550,7 @@ enum minesweeper_status menu( void )
|
|||
|
||||
MENUITEM_STRINGLIST( menu, "Minesweeper Menu", NULL, "Play Minesweeper",
|
||||
"Mine Percentage", "Number of Rows",
|
||||
"Number of Columns", "Quit" );
|
||||
"Number of Columns", "Playback Control", "Quit" );
|
||||
|
||||
#ifdef HAVE_LCD_COLOR
|
||||
rb->lcd_set_foreground( rb->global_settings->fg_color );
|
||||
|
@ -579,6 +581,10 @@ enum minesweeper_status menu( void )
|
|||
1, 1, MAX_WIDTH, NULL );
|
||||
break;
|
||||
|
||||
case 4:
|
||||
playback_control( NULL );
|
||||
break;
|
||||
|
||||
default:
|
||||
result = MINESWEEPER_QUIT; /* quit program */
|
||||
menu_quit = true;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue