diff options
author | Dave Chapman <dave@dchapman.com> | 2005-11-19 03:19:12 +0000 |
---|---|---|
committer | Dave Chapman <dave@dchapman.com> | 2005-11-19 03:19:12 +0000 |
commit | fe772405beb9e49e5c83c885763628985f81fc5f (patch) | |
tree | 23cb659d94c404e3a6426f26705ef8d5ff86f243 /apps/plugins | |
parent | a807fca49be192b676719c2aecc5056754d04c7f (diff) |
iPod: First attempt to implement sensible button mappings. Changes to all targets to replace a small number of references to raw button codes (BUTTON_???) with their abstract equivalents.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@7983 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins')
-rw-r--r-- | apps/plugins/databox/databox.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/plugins/databox/databox.c b/apps/plugins/databox/databox.c index cd51f32a49..c2a33b7331 100644 --- a/apps/plugins/databox/databox.c +++ b/apps/plugins/databox/databox.c @@ -30,8 +30,8 @@ #define DBX_SELECT BUTTON_MENU #define DBX_STOP BUTTON_OFF #elif (CONFIG_KEYPAD == IPOD_4G_PAD) || (CONFIG_KEYPAD == IPOD_NANO_PAD) -#define DBX_SELECT BUTTON_MENU -#define DBX_STOP BUTTON_OFF +#define DBX_SELECT BUTTON_SELECT +#define DBX_STOP BUTTON_MENU #elif CONFIG_KEYPAD == PLAYER_PAD #define DBX_SELECT BUTTON_PLAY #define DBX_STOP BUTTON_STOP |