summaryrefslogtreecommitdiff
path: root/apps/plugins/reversi/reversi-gui.h
diff options
context:
space:
mode:
authorJens Arnold <amiconn@rockbox.org>2008-03-22 14:20:04 +0000
committerJens Arnold <amiconn@rockbox.org>2008-03-22 14:20:04 +0000
commit106ac75ad8229d4c5f66a846609520d22d9d8f0c (patch)
treedefc6786b833bbef4f589070814eee59a8567ba8 /apps/plugins/reversi/reversi-gui.h
parent95d8590659602080acc7d25f49e7b24b429aa5af (diff)
downloadrockbox-106ac75ad8229d4c5f66a846609520d22d9d8f0c.tar.gz
rockbox-106ac75ad8229d4c5f66a846609520d22d9d8f0c.zip
Adapted most multi-source plugins to the iAudio M3 keypad and screen. Doom and mpegplayer are disabled because of the not yet implemented greyscale library, and zxbox used 2-bit greyscale for now. * Slight optimisation for the (currently unused except on M3) 2-bit greyscale code in zxbox. * Simplified button definitions in chessbox.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@16744 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/reversi/reversi-gui.h')
-rw-r--r--apps/plugins/reversi/reversi-gui.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/apps/plugins/reversi/reversi-gui.h b/apps/plugins/reversi/reversi-gui.h
index 84552c8fe1..de2286e5df 100644
--- a/apps/plugins/reversi/reversi-gui.h
+++ b/apps/plugins/reversi/reversi-gui.h
@@ -123,6 +123,15 @@
123#define REVERSI_BUTTON_MAKE_MOVE BUTTON_SELECT 123#define REVERSI_BUTTON_MAKE_MOVE BUTTON_SELECT
124#define REVERSI_BUTTON_MENU BUTTON_MENU 124#define REVERSI_BUTTON_MENU BUTTON_MENU
125 125
126#elif CONFIG_KEYPAD == IAUDIO_M3_PAD
127#define REVERSI_BUTTON_QUIT BUTTON_RC_REC
128#define REVERSI_BUTTON_UP BUTTON_RC_VOL_UP
129#define REVERSI_BUTTON_DOWN BUTTON_RC_VOL_DOWN
130#define REVERSI_BUTTON_LEFT BUTTON_RC_REW
131#define REVERSI_BUTTON_RIGHT BUTTON_RC_FF
132#define REVERSI_BUTTON_MAKE_MOVE BUTTON_RC_PLAY
133#define REVERSI_BUTTON_MENU BUTTON_RC_MENU
134
126#else 135#else
127#error No keymap defined! 136#error No keymap defined!
128#endif 137#endif