diff options
author | Christi Scarborough <christi@coraline.org> | 2006-01-31 14:29:51 +0000 |
---|---|---|
committer | Christi Scarborough <christi@coraline.org> | 2006-01-31 14:29:51 +0000 |
commit | ae0ae6d5cf85ecd578b58a37a9a1839acf88c2cb (patch) | |
tree | 4a5717e66ff077a045b5e726e7c457470faea403 /firmware | |
parent | cce79d38058efc58b2ca15ef63d06774d8487fe6 (diff) |
Small iPod colour BMP fix by linuxstd
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@8504 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware')
-rw-r--r-- | firmware/export/button.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/firmware/export/button.h b/firmware/export/button.h index c251f11890..c8d903346d 100644 --- a/firmware/export/button.h +++ b/firmware/export/button.h @@ -159,9 +159,9 @@ bool button_hold(void); #define BUTTON_MENU 0x0002 #define BUTTON_PLAY 0x0004 -#define BUTTON_SELECT 0x0008 -#define BUTTON_SCROLL_FWD 0x0010 -#define BUTTON_SCROLL_BACK 0x0020 +#define BUTTON_SELECT 0x0001 +#define BUTTON_SCROLL_FWD 0x0008 +#define BUTTON_SCROLL_BACK 0x0010 #elif CONFIG_KEYPAD == IRIVER_IFP7XX_PAD |