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 590ea56d08..19a6b99f12 100644
--- a/apps/plugins/minesweeper.c
+++ b/apps/plugins/minesweeper.c
@@ -432,6 +432,17 @@ CONFIG_KEYPAD == MROBE500_PAD
432# define MINESWP_DISCOVER (BUTTON_PLAY | BUTTON_REPEAT) 432# define MINESWP_DISCOVER (BUTTON_PLAY | BUTTON_REPEAT)
433# define MINESWP_INFO BUTTON_VOL_UP 433# define MINESWP_INFO BUTTON_VOL_UP
434 434
435#elif CONFIG_KEYPAD == FIIO_M3K_PAD
436# define MINESWP_LEFT BUTTON_LEFT
437# define MINESWP_RIGHT BUTTON_RIGHT
438# define MINESWP_UP BUTTON_UP
439# define MINESWP_DOWN BUTTON_DOWN
440# define MINESWP_QUIT BUTTON_POWER
441# define MINESWP_TOGGLE_PRE BUTTON_SELECT
442# define MINESWP_TOGGLE (BUTTON_SELECT|BUTTON_REL)
443# define MINESWP_DISCOVER (BUTTON_SELECT|BUTTON_REPEAT)
444# define MINESWP_INFO BUTTON_MENU
445
435#else 446#else
436#error No keymap defined! 447#error No keymap defined!
437#endif 448#endif