summaryrefslogtreecommitdiffstats
path: root/apps/plugins/sudoku
diff options
context:
space:
mode:
authorAndrew Ryabinin <ryabinin.a.a@gmail.com>2012-04-06 20:17:27 +0400
committerAndrew Ryabinin <ryabinin.a.a@gmail.com>2012-04-19 17:31:13 +0400
commit6ee3fc81d9299693da29c204b6ebe243caeae46d (patch)
treeb450288696536193b975d669e20400d4d682b754 /apps/plugins/sudoku
parent397863ab3d45bdd8292512a22cd3b436cf281c76 (diff)
downloadrockbox-6ee3fc81d9299693da29c204b6ebe243caeae46d.tar.gz
rockbox-6ee3fc81d9299693da29c204b6ebe243caeae46d.zip
hm801: Add support for plugins.
Change-Id: I81654db87d38324d8680a56bcdb7e9922ee5b619
Diffstat (limited to 'apps/plugins/sudoku')
-rw-r--r--apps/plugins/sudoku/sudoku.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/apps/plugins/sudoku/sudoku.h b/apps/plugins/sudoku/sudoku.h
index a7bb85f6bb..b0a731d0f2 100644
--- a/apps/plugins/sudoku/sudoku.h
+++ b/apps/plugins/sudoku/sudoku.h
@@ -356,6 +356,18 @@
#define SUDOKU_BUTTON_POSSIBLE (BUTTON_POWER | BUTTON_SELECT)
#define SUDOKU_BUTTON_ALTTOGGLE (BUTTON_POWER | BUTTON_UP)
+#elif CONFIG_KEYPAD == HM801_PAD
+#define SUDOKU_BUTTON_QUIT BUTTON_POWER
+#define SUDOKU_BUTTON_MENU BUTTON_PLAY
+#define SUDOKU_BUTTON_LEFT BUTTON_LEFT
+#define SUDOKU_BUTTON_RIGHT BUTTON_RIGHT
+#define SUDOKU_BUTTON_UP BUTTON_UP
+#define SUDOKU_BUTTON_DOWN BUTTON_DOWN
+#define SUDOKU_BUTTON_TOGGLE BUTTON_NEXT
+#define SUDOKU_BUTTON_TOGGLEBACK BUTTON_PREV
+#define SUDOKU_BUTTON_POSSIBLE (BUTTON_POWER | BUTTON_SELECT)
+#define SUDOKU_BUTTON_ALTTOGGLE BUTTON_SELECT
+
#else
#error No keymap defined!
#endif