summaryrefslogtreecommitdiff
path: root/apps/plugins/flipit.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/flipit.c
parente09b87a31f1cef46ff2017f031c2ce13a2502082 (diff)
downloadrockbox-a7168feeac24ff192e1174717dbfa5582509babf.tar.gz
rockbox-a7168feeac24ff192e1174717dbfa5582509babf.zip
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/flipit.c')
-rw-r--r--apps/plugins/flipit.c20
1 files changed, 10 insertions, 10 deletions
diff --git a/apps/plugins/flipit.c b/apps/plugins/flipit.c
index 9bff0b09a3..3d28e0d000 100644
--- a/apps/plugins/flipit.c
+++ b/apps/plugins/flipit.c
@@ -100,11 +100,11 @@ PLUGIN_HEADER
100 100
101#define FLIPIT_UP BUTTON_UP 101#define FLIPIT_UP BUTTON_UP
102#define FLIPIT_DOWN BUTTON_DOWN 102#define FLIPIT_DOWN BUTTON_DOWN
103#define FLIPIT_QUIT BUTTON_A 103#define FLIPIT_QUIT BUTTON_POWER
104#define FLIPIT_SHUFFLE (BUTTON_POWER | BUTTON_LEFT) 104#define FLIPIT_SHUFFLE BUTTON_MENU
105#define FLIPIT_SOLVE (BUTTON_POWER | BUTTON_RIGHT) 105#define FLIPIT_SOLVE BUTTON_VOL_UP
106#define FLIPIT_STEP_BY_STEP (BUTTON_POWER | BUTTON_UP) 106#define FLIPIT_STEP_BY_STEP BUTTON_VOL_DOWN
107#define FLIPIT_TOGGLE BUTTON_MENU 107#define FLIPIT_TOGGLE BUTTON_SELECT
108 108
109#elif CONFIG_KEYPAD == SANSA_E200_PAD 109#elif CONFIG_KEYPAD == SANSA_E200_PAD
110 110
@@ -510,11 +510,11 @@ enum plugin_status plugin_start(struct plugin_api* api, void* parameter)
510 rb->lcd_putsxy(2, 38, "[PLAY..] solution"); 510 rb->lcd_putsxy(2, 38, "[PLAY..] solution");
511 rb->lcd_putsxy(2, 48, "[PLAY] step by step"); 511 rb->lcd_putsxy(2, 48, "[PLAY] step by step");
512#elif CONFIG_KEYPAD == GIGABEAT_PAD 512#elif CONFIG_KEYPAD == GIGABEAT_PAD
513 rb->lcd_putsxy(2, 8, "[A] to stop"); 513 rb->lcd_putsxy(2, 8, "[POWER] to stop");
514 rb->lcd_putsxy(2, 18, "[MENU] toggle"); 514 rb->lcd_putsxy(2, 18, "[SELECT] toggle");
515 rb->lcd_putsxy(2, 28, "[P-LEFT] shuffle"); 515 rb->lcd_putsxy(2, 28, "[MENU] shuffle");
516 rb->lcd_putsxy(2, 38, "[P-RIGHT] solution"); 516 rb->lcd_putsxy(2, 38, "[VOL+] solution");
517 rb->lcd_putsxy(2, 48, "[P-UP] step by step"); 517 rb->lcd_putsxy(2, 48, "[VOL-] step by step");
518#elif CONFIG_KEYPAD == IRIVER_H10_PAD 518#elif CONFIG_KEYPAD == IRIVER_H10_PAD
519 rb->lcd_putsxy(2, 8, "[POWER] to stop"); 519 rb->lcd_putsxy(2, 8, "[POWER] to stop");
520 rb->lcd_putsxy(2, 18, "[REW] toggle"); 520 rb->lcd_putsxy(2, 18, "[REW] toggle");