summaryrefslogtreecommitdiff
path: root/apps/plugins/solitaire.c
diff options
context:
space:
mode:
authorAmaury Pouly <amaury.pouly@gmail.com>2014-07-17 10:40:17 +0200
committerAmaury Pouly <amaury.pouly@gmail.com>2014-07-17 10:40:17 +0200
commite08331eef4555a17145d2fd2af1d5a9b5ce6d624 (patch)
treedb41fe84f8175d36525ccb7ae21995584a008253 /apps/plugins/solitaire.c
parent2387d92c9c39f238d3d193d970edf30162d8ec9e (diff)
downloadrockbox-e08331eef4555a17145d2fd2af1d5a9b5ce6d624.tar.gz
rockbox-e08331eef4555a17145d2fd2af1d5a9b5ce6d624.zip
zen/zenxfi/zenxfistyle/zenmozaic: implement plugin keymaps and enable plugins
Plugins on the ZEN/ZEN X-Fi require to increase the plugin buffer size. Change-Id: If4651c87b402060faa24530985c6e871379c8ea1
Diffstat (limited to 'apps/plugins/solitaire.c')
-rw-r--r--apps/plugins/solitaire.c17
1 files changed, 17 insertions, 0 deletions
diff --git a/apps/plugins/solitaire.c b/apps/plugins/solitaire.c
index d97ae082a7..04e3c15d56 100644
--- a/apps/plugins/solitaire.c
+++ b/apps/plugins/solitaire.c
@@ -634,6 +634,23 @@ CONFIG_KEYPAD == MROBE500_PAD
634#define HK_CUR2STACK "Option+Left" 634#define HK_CUR2STACK "Option+Left"
635#define HK_REM2STACK "Option+Right" 635#define HK_REM2STACK "Option+Right"
636 636
637#elif (CONFIG_KEYPAD == CREATIVE_ZEN_PAD)
638#define SOL_QUIT BUTTON_POWER
639#define SOL_UP BUTTON_UP
640#define SOL_DOWN BUTTON_DOWN
641#define SOL_LEFT BUTTON_LEFT
642#define SOL_RIGHT BUTTON_RIGHT
643#define SOL_MOVE BUTTON_SELECT
644#define SOL_DRAW BUTTON_PLAYPAUSE
645#define SOL_REM2CUR BUTTON_BACK
646#define SOL_CUR2STACK BUTTON_MENU
647#define SOL_REM2STACK BUTTON_SHORTCUT
648#define HK_MOVE "Select"
649#define HK_DRAW "Play/pause"
650#define HK_REM2CUR "Back"
651#define HK_CUR2STACK "Menu"
652#define HK_REM2STACK "Shortcut"
653
637#else 654#else
638#error No keymap defined! 655#error No keymap defined!
639#endif 656#endif