summaryrefslogtreecommitdiff
path: root/apps/plugins/lib/pluginlib_actions.c
diff options
context:
space:
mode:
authorRobert Menes <rmenes@rockbox.org>2010-10-21 02:45:06 +0000
committerRobert Menes <rmenes@rockbox.org>2010-10-21 02:45:06 +0000
commit0c8b5594ae5d653abd2fac453aaea3fbeb97c15f (patch)
tree23fb45575f5d0b7fede040acac1ac344545e77de /apps/plugins/lib/pluginlib_actions.c
parent03f6c7a4e7914ed7843ef39cf2f275b9da3b430a (diff)
Add plugin keymaps to fft for the GoGear SA9200.
Also fix some errors in pluginlib_actions.c which were causing the SA9200 build to crap out when building plugins, and also disable plugins for the SA9200 in the configure script (no idea why they were enabled in the first place!) git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28316 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/lib/pluginlib_actions.c')
-rw-r--r--apps/plugins/lib/pluginlib_actions.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/apps/plugins/lib/pluginlib_actions.c b/apps/plugins/lib/pluginlib_actions.c
index 1eafe87aea..59756f530e 100644
--- a/apps/plugins/lib/pluginlib_actions.c
+++ b/apps/plugins/lib/pluginlib_actions.c
@@ -250,7 +250,6 @@ const struct button_mapping pla_main_ctx[] =
|| CONFIG_KEYPAD == SANSA_CLIP_PAD \
|| CONFIG_KEYPAD == SANSA_M200_PAD \
|| CONFIG_KEYPAD == MROBE100_PAD \
- || CONFIG_KEYPAD == PHILIPS_SA9200_PAD \
|| CONFIG_KEYPAD == PHILIPS_HDD1630_PAD)
{PLA_CANCEL, BUTTON_POWER|BUTTON_REL, BUTTON_POWER},
{PLA_EXIT, BUTTON_POWER|BUTTON_REPEAT, BUTTON_NONE},
@@ -323,9 +322,9 @@ const struct button_mapping pla_main_ctx[] =
{PLA_SELECT, BUTTON_RC_MODE, BUTTON_NONE},
{PLA_SELECT_REL, BUTTON_RC_MODE|BUTTON_REL, BUTTON_RC_MODE},
{PLA_SELECT_REPEAT, BUTTON_RC_MODE|BUTTON_REPEAT, BUTTON_NONE},
-#elif CONFIG_KEYPAD == PHILIPS_SA9200_PAD
+#elif (CONFIG_KEYPAD == PHILIPS_SA9200_PAD)
{PLA_EXIT, BUTTON_POWER, BUTTON_NONE},
- {PLA_CANCE BUTTON_MENU, BUTTON_NONE},
+ {PLA_CANCEL, BUTTON_MENU, BUTTON_NONE},
{PLA_SELECT, BUTTON_PLAY, BUTTON_NONE},
{PLA_SELECT_REL, BUTTON_PLAY|BUTTON_REL, BUTTON_PLAY},
{PLA_SELECT_REPEAT, BUTTON_PLAY|BUTTON_REPEAT, BUTTON_NONE},