summaryrefslogtreecommitdiff
path: root/apps/plugins/minesweeper.c
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2005-02-04 12:41:09 +0000
committerDaniel Stenberg <daniel@haxx.se>2005-02-04 12:41:09 +0000
commit6700ad8f206d0beba92e22680504ae6ba2b7d74c (patch)
tree1eba76a3a966d2a38e1819157917918b7721ff0b /apps/plugins/minesweeper.c
parent3fcfdffe88025a943f9c72f7b86363dc08edaecd (diff)
downloadrockbox-6700ad8f206d0beba92e22680504ae6ba2b7d74c.tar.gz
rockbox-6700ad8f206d0beba92e22680504ae6ba2b7d74c.zip
adapted to build on iRiver
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@5784 a1c6a512-1295-4272-9138-f99709370657
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 b6636bbfb7..fb997ac819 100644
--- a/apps/plugins/minesweeper.c
+++ b/apps/plugins/minesweeper.c
@@ -57,6 +57,15 @@ use F3 to see how many mines are left (supposing all your flags are correct)
57#define MINESWP_DISCOVER (BUTTON_MENU | BUTTON_REPEAT) 57#define MINESWP_DISCOVER (BUTTON_MENU | BUTTON_REPEAT)
58#define MINESWP_INFO (BUTTON_MENU | BUTTON_OFF) 58#define MINESWP_INFO (BUTTON_MENU | BUTTON_OFF)
59 59
60#elif CONFIG_KEYPAD == IRIVER_H100_PAD
61#define MINESWP_QUIT BUTTON_OFF
62#define MINESWP_START BUTTON_ON
63#define MINESWP_TOGGLE_PRE BUTTON_MODE
64
65#define MINESWP_TOGGLE (BUTTON_MODE | BUTTON_REL)
66#define MINESWP_DISCOVER (BUTTON_MODE | BUTTON_REPEAT)
67#define MINESWP_INFO (BUTTON_MODE | BUTTON_OFF)
68
60#endif 69#endif
61 70
62 71