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.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/apps/plugins/minesweeper.c b/apps/plugins/minesweeper.c
index 5baaea6812..b6a6172f51 100644
--- a/apps/plugins/minesweeper.c
+++ b/apps/plugins/minesweeper.c
@@ -80,6 +80,15 @@ PLUGIN_HEADER
80#define MINESWP_DISCOVER (BUTTON_SELECT | BUTTON_PLAY) 80#define MINESWP_DISCOVER (BUTTON_SELECT | BUTTON_PLAY)
81#define MINESWP_INFO (BUTTON_SELECT | BUTTON_MENU) 81#define MINESWP_INFO (BUTTON_SELECT | BUTTON_MENU)
82 82
83#elif (CONFIG_KEYPAD == IAUDIO_X5_PAD)
84#define MINESWP_UP BUTTON_UP
85#define MINESWP_DOWN BUTTON_DOWN
86#define MINESWP_QUIT BUTTON_POWER
87#define MINESWP_START BUTTON_REC
88#define MINESWP_TOGGLE BUTTON_PLAY
89#define MINESWP_DISCOVER BUTTON_MENU
90#define MINESWP_INFO (BUTTON_REC | BUTTON_PLAY)
91
83#endif 92#endif
84 93
85/* here is a global api struct pointer. while not strictly necessary, 94/* here is a global api struct pointer. while not strictly necessary,