summaryrefslogtreecommitdiff
path: root/apps/plugins/minesweeper.c
diff options
context:
space:
mode:
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,