diff options
| author | Kevin Ferrare <kevin@rockbox.org> | 2006-06-30 16:43:47 +0000 |
|---|---|---|
| committer | Kevin Ferrare <kevin@rockbox.org> | 2006-06-30 16:43:47 +0000 |
| commit | 0e027bd90c4f0c2aa42c087a1957b42a58e93270 (patch) | |
| tree | d21b7009fb818c907fcfc2268f1b9a12fd9263de /apps/plugins/minesweeper.c | |
| parent | 7bbf53eae502417e6e0fbb204e319310f28f33ad (diff) | |
| download | rockbox-0e027bd90c4f0c2aa42c087a1957b42a58e93270.zip rockbox-0e027bd90c4f0c2aa42c087a1957b42a58e93270.tar.gz rockbox-0e027bd90c4f0c2aa42c087a1957b42a58e93270.tar.bz2 rockbox-0e027bd90c4f0c2aa42c087a1957b42a58e93270.tar.xz | |
To avoid having to use the main unit when accidentally launching a plugin from the remote, plugins now support remote quit
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@10157 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/minesweeper.c')
| -rw-r--r-- | apps/plugins/minesweeper.c | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/apps/plugins/minesweeper.c b/apps/plugins/minesweeper.c index bdb6fd7..0b4f571 100644 --- a/apps/plugins/minesweeper.c +++ b/apps/plugins/minesweeper.c @@ -71,6 +71,8 @@ PLUGIN_HEADER #define MINESWP_RIGHT (BUTTON_ON | BUTTON_RIGHT) #define MINESWP_LEFT (BUTTON_ON | BUTTON_LEFT) +#define MINESWP_RC_QUIT BUTTON_RC_STOP + #elif (CONFIG_KEYPAD == IPOD_4G_PAD) || \ (CONFIG_KEYPAD == IPOD_3G_PAD) #define MINESWP_UP BUTTON_SCROLL_BACK @@ -506,7 +508,9 @@ int minesweeper(void) case MINESWP_START:/* start playing */ i = 1; break; - +#ifdef MINESWP_RC_QUIT + case MINESWP_RC_QUIT: +#endif case MINESWP_QUIT:/* quit program */ return MINESWEEPER_QUIT; @@ -580,6 +584,9 @@ int minesweeper(void) button = rb->button_get(true); switch(button){ /* quit minesweeper (you really shouldn't use this button ...) */ +#ifdef MINESWP_RC_QUIT + case MINESWP_RC_QUIT: +#endif case MINESWP_QUIT: return MINESWEEPER_QUIT; |