summaryrefslogtreecommitdiff
path: root/apps/plugins/minesweeper.c
diff options
context:
space:
mode:
authorTomasz Moń <desowin@gmail.com>2011-11-16 14:08:01 +0000
committerTomasz Moń <desowin@gmail.com>2011-11-16 14:08:01 +0000
commite8a8a1be43afe63079ae48ce1a9eb3052df3b1a4 (patch)
tree084e1cdf27a339ce58e24cff8fec8c31432b52db /apps/plugins/minesweeper.c
parent992d4eb775cac48e107e18d72783ebfb39c4234f (diff)
downloadrockbox-e8a8a1be43afe63079ae48ce1a9eb3052df3b1a4.tar.gz
rockbox-e8a8a1be43afe63079ae48ce1a9eb3052df3b1a4.zip
Sandisk Sansa Connect port (FS #12363)
Included are drivers for buttons, backlight, lcd, audio and storage. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@31000 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/minesweeper.c')
-rw-r--r--apps/plugins/minesweeper.c14
1 files changed, 14 insertions, 0 deletions
diff --git a/apps/plugins/minesweeper.c b/apps/plugins/minesweeper.c
index d8313fb741..ad67b1dd67 100644
--- a/apps/plugins/minesweeper.c
+++ b/apps/plugins/minesweeper.c
@@ -297,6 +297,20 @@ CONFIG_KEYPAD == MROBE500_PAD
297# define MINESWP_DISCOVER BUTTON_PLAYPAUSE 297# define MINESWP_DISCOVER BUTTON_PLAYPAUSE
298# define MINESWP_INFO BUTTON_BACK 298# define MINESWP_INFO BUTTON_BACK
299 299
300#elif (CONFIG_KEYPAD == SANSA_CONNECT_PAD)
301
302# define MINESWP_SCROLLWHEEL
303# define MINESWP_LEFT BUTTON_LEFT
304# define MINESWP_RIGHT BUTTON_RIGHT
305# define MINESWP_UP BUTTON_UP
306# define MINESWP_DOWN BUTTON_DOWN
307# define MINESWP_QUIT BUTTON_POWER
308# define MINESWP_NEXT BUTTON_SCROLL_FWD
309# define MINESWP_PREV BUTTON_SCROLL_BACK
310# define MINESWP_TOGGLE BUTTON_NEXT
311# define MINESWP_DISCOVER BUTTON_SELECT
312# define MINESWP_INFO BUTTON_PREV
313
300#else 314#else
301#error No keymap defined! 315#error No keymap defined!
302#endif 316#endif