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.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/apps/plugins/minesweeper.c b/apps/plugins/minesweeper.c
index 7cffdaf230..4adfc07d0e 100644
--- a/apps/plugins/minesweeper.c
+++ b/apps/plugins/minesweeper.c
@@ -212,6 +212,16 @@ enum minesweeper_status {
212# define MINESWP_DISCOVER BUTTON_PLAY 212# define MINESWP_DISCOVER BUTTON_PLAY
213# define MINESWP_INFO BUTTON_MENU 213# define MINESWP_INFO BUTTON_MENU
214 214
215#elif CONFIG_KEYPAD == PHILIPS_HDD1630_PAD
216# define MINESWP_LEFT BUTTON_LEFT
217# define MINESWP_RIGHT BUTTON_RIGHT
218# define MINESWP_UP BUTTON_UP
219# define MINESWP_DOWN BUTTON_DOWN
220# define MINESWP_QUIT BUTTON_POWER
221# define MINESWP_TOGGLE BUTTON_VIEW
222# define MINESWP_DISCOVER BUTTON_SELECT
223# define MINESWP_INFO BUTTON_MENU
224
215#else 225#else
216#error No keymap defined! 226#error No keymap defined!
217#endif 227#endif