summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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 5b5b422e08..c63acf547c 100644
--- a/apps/plugins/minesweeper.c
+++ b/apps/plugins/minesweeper.c
@@ -287,6 +287,16 @@ CONFIG_KEYPAD == MROBE500_PAD
287# define MINESWP_DISCOVER BUTTON_FF 287# define MINESWP_DISCOVER BUTTON_FF
288# define MINESWP_INFO BUTTON_REW 288# define MINESWP_INFO BUTTON_REW
289 289
290#elif CONFIG_KEYPAD == SANSA_FUZEPLUS_PAD
291# define MINESWP_LEFT BUTTON_LEFT
292# define MINESWP_RIGHT BUTTON_RIGHT
293# define MINESWP_UP BUTTON_UP
294# define MINESWP_DOWN BUTTON_DOWN
295# define MINESWP_QUIT BUTTON_POWER
296# define MINESWP_TOGGLE BUTTON_SELECT
297# define MINESWP_DISCOVER BUTTON_PLAYPAUSE
298# define MINESWP_INFO BUTTON_BACK
299
290#else 300#else
291#error No keymap defined! 301#error No keymap defined!
292#endif 302#endif