summaryrefslogtreecommitdiff
path: root/apps/plugins/sokoban.c
diff options
context:
space:
mode:
authorMarcoen Hirschberg <marcoen@gmail.com>2007-05-19 23:38:09 +0000
committerMarcoen Hirschberg <marcoen@gmail.com>2007-05-19 23:38:09 +0000
commita7168feeac24ff192e1174717dbfa5582509babf (patch)
tree75fe61639d0387a18195b665389fbde21d331f65 /apps/plugins/sokoban.c
parente09b87a31f1cef46ff2017f031c2ce13a2502082 (diff)
downloadrockbox-a7168feeac24ff192e1174717dbfa5582509babf.zip
rockbox-a7168feeac24ff192e1174717dbfa5582509babf.tar.gz
rockbox-a7168feeac24ff192e1174717dbfa5582509babf.tar.bz2
rockbox-a7168feeac24ff192e1174717dbfa5582509babf.tar.xz
attempt to make the Gigabeat button mappings in the plugins more logical and in line with the mapping in rockbox itself
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@13436 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/sokoban.c')
-rw-r--r--apps/plugins/sokoban.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/apps/plugins/sokoban.c b/apps/plugins/sokoban.c
index d9c3e64..40a2f54 100644
--- a/apps/plugins/sokoban.c
+++ b/apps/plugins/sokoban.c
@@ -136,11 +136,11 @@ enum {
#elif (CONFIG_KEYPAD == GIGABEAT_PAD)
#define SOKOBAN_UP BUTTON_UP
#define SOKOBAN_DOWN BUTTON_DOWN
-#define SOKOBAN_QUIT BUTTON_A
+#define SOKOBAN_QUIT BUTTON_POWER
#define SOKOBAN_UNDO BUTTON_SELECT
-#define SOKOBAN_REDO BUTTON_POWER
-#define SOKOBAN_LEVEL_UP (BUTTON_MENU | BUTTON_UP)
-#define SOKOBAN_LEVEL_DOWN (BUTTON_MENU | BUTTON_DOWN)
+#define SOKOBAN_REDO BUTTON_A
+#define SOKOBAN_LEVEL_UP BUTTON_VOL_UP
+#define SOKOBAN_LEVEL_DOWN BUTTON_VOL_DOWN
#define SOKOBAN_LEVEL_REPEAT BUTTON_MENU
#elif (CONFIG_KEYPAD == SANSA_E200_PAD)
@@ -967,12 +967,12 @@ enum plugin_status plugin_start(struct plugin_api* api, void* parameter)
rb->lcd_putsxy(3, 26, "[REC] Down a Level");
rb->lcd_putsxy(3, 36, "[PLAY] Up Level");
#elif CONFIG_KEYPAD == GIGABEAT_PAD
- rb->lcd_putsxy(3, 6, "[A] Quit");
+ rb->lcd_putsxy(3, 6, "[POWER] Quit");
rb->lcd_putsxy(3, 16, "[SELECT] Undo");
- rb->lcd_putsxy(3, 26, "[POWER] Redo");
- rb->lcd_putsxy(3, 36, "[MENU+DOWN] Down a Level");
+ rb->lcd_putsxy(3, 26, "[A] Redo");
+ rb->lcd_putsxy(3, 36, "[VOL-] Down a Level");
rb->lcd_putsxy(3, 46, "[MENU] Restart Level");
- rb->lcd_putsxy(3, 56, "[MENU+UP] Up Level");
+ rb->lcd_putsxy(3, 56, "[VOL+] Up Level");
#elif CONFIG_KEYPAD == SANSA_E200_PAD
rb->lcd_putsxy(3, 6, "[POWER] Quit");
rb->lcd_putsxy(3, 16, "[SELECT] Undo");