summaryrefslogtreecommitdiff
path: root/firmware
diff options
context:
space:
mode:
authorJens Arnold <amiconn@rockbox.org>2005-11-22 01:15:31 +0000
committerJens Arnold <amiconn@rockbox.org>2005-11-22 01:15:31 +0000
commit49a0a945ac5ee6598a2ff15c3b806e5fa0a727be (patch)
tree2e73c47d0eebbcadd87accf2e80fe3796565a9b2 /firmware
parentb51f7dfc9b507ab9db12fe90b2ddad708f435e06 (diff)
downloadrockbox-49a0a945ac5ee6598a2ff15c3b806e5fa0a727be.tar.gz
rockbox-49a0a945ac5ee6598a2ff15c3b806e5fa0a727be.zip
Win32 simulator now supports iPod Color. Fixed screendump() to correctly work for iPod simulators on big endian machines. Removed duplicate button definitions.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@8035 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware')
-rw-r--r--firmware/export/button.h12
1 files changed, 5 insertions, 7 deletions
diff --git a/firmware/export/button.h b/firmware/export/button.h
index 8f70af793c..a0cbd78de6 100644
--- a/firmware/export/button.h
+++ b/firmware/export/button.h
@@ -148,13 +148,11 @@ bool remote_button_hold(void);
148 148
149/* TODO: These codes should relate to the hardware */ 149/* TODO: These codes should relate to the hardware */
150 150
151#define BUTTON_MENU 0x0001 151#define BUTTON_MENU 0x0002
152#define BUTTON_PLAY 0x0002 152#define BUTTON_PLAY 0x0004
153#define BUTTON_NEXT 0x0004 153#define BUTTON_SELECT 0x0008
154#define BUTTON_PREV 0x0008 154#define BUTTON_SCROLL_FWD 0x0010
155#define BUTTON_SELECT 0x0010 155#define BUTTON_SCROLL_BACK 0x0020
156#define BUTTON_SCROLL_FWD 0x0020
157#define BUTTON_SCROLL_BACK 0x0040
158 156
159#endif /* RECORDER/PLAYER/ONDIO/GMINI KEYPAD */ 157#endif /* RECORDER/PLAYER/ONDIO/GMINI KEYPAD */
160 158