summaryrefslogtreecommitdiff
path: root/apps/plugins/goban/goban.h
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/goban/goban.h')
-rw-r--r--apps/plugins/goban/goban.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/apps/plugins/goban/goban.h b/apps/plugins/goban/goban.h
index b7c083ed0d..6bc1e83ea9 100644
--- a/apps/plugins/goban/goban.h
+++ b/apps/plugins/goban/goban.h
@@ -297,6 +297,18 @@
297/* No advance/retreat */ 297/* No advance/retreat */
298/* no next var */ 298/* no next var */
299 299
300#elif (CONFIG_KEYPAD == PBELL_VIBE500_PAD)
301#define GBN_BUTTON_UP BUTTON_UP
302#define GBN_BUTTON_DOWN BUTTON_DOWN
303#define GBN_BUTTON_LEFT BUTTON_PREV
304#define GBN_BUTTON_RIGHT BUTTON_NEXT
305#define GBN_BUTTON_RETREAT (BUTTON_OK | BUTTON_PREV)
306#define GBN_BUTTON_ADVANCE (BUTTON_OK | BUTTON_NEXT)
307#define GBN_BUTTON_MENU BUTTON_MENU
308#define GBN_BUTTON_PLAY BUTTON_PLAY
309#define GBN_BUTTON_CONTEXT BUTTON_OK
310#define GBN_BUTTON_NEXT_VAR BUTTON_CANCEL
311
300#else 312#else
301#error Unsupported keypad 313#error Unsupported keypad
302#endif 314#endif