summaryrefslogtreecommitdiff
path: root/apps/plugins/minesweeper.c
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2006-08-03 20:17:25 +0000
committerDaniel Stenberg <daniel@haxx.se>2006-08-03 20:17:25 +0000
commit1e88be518adafe146704a506aad7f895fffbb240 (patch)
tree59de8c14bcec054d32b82890f73391301ad152aa /apps/plugins/minesweeper.c
parent364e892050c5d03895d27ad290180f7a82d0ecbf (diff)
downloadrockbox-1e88be518adafe146704a506aad7f895fffbb240.tar.gz
rockbox-1e88be518adafe146704a506aad7f895fffbb240.zip
Barry Wardell's keymappings for H10
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@10446 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/minesweeper.c')
-rw-r--r--apps/plugins/minesweeper.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/apps/plugins/minesweeper.c b/apps/plugins/minesweeper.c
index 5a47b03292..21e655671f 100644
--- a/apps/plugins/minesweeper.c
+++ b/apps/plugins/minesweeper.c
@@ -107,6 +107,17 @@ PLUGIN_HEADER
107#define MINESWP_RIGHT (BUTTON_SELECT | BUTTON_RIGHT) 107#define MINESWP_RIGHT (BUTTON_SELECT | BUTTON_RIGHT)
108#define MINESWP_LEFT (BUTTON_SELECT | BUTTON_LEFT) 108#define MINESWP_LEFT (BUTTON_SELECT | BUTTON_LEFT)
109 109
110#elif (CONFIG_KEYPAD == IRIVER_H10_PAD)
111#define MINESWP_UP BUTTON_SCROLL_UP
112#define MINESWP_DOWN BUTTON_SCROLL_DOWN
113#define MINESWP_QUIT BUTTON_POWER
114#define MINESWP_START BUTTON_FF
115#define MINESWP_TOGGLE BUTTON_PLAY
116#define MINESWP_DISCOVER BUTTON_REW
117#define MINESWP_INFO (BUTTON_REW | BUTTON_PLAY)
118#define MINESWP_RIGHT (BUTTON_RIGHT | BUTTON_PLAY)
119#define MINESWP_LEFT (BUTTON_LEFT | BUTTON_PLAY)
120
110#endif 121#endif
111 122
112/* here is a global api struct pointer. while not strictly necessary, 123/* here is a global api struct pointer. while not strictly necessary,