summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Martitz <kugel@rockbox.org>2009-03-17 04:49:55 +0000
committerThomas Martitz <kugel@rockbox.org>2009-03-17 04:49:55 +0000
commit997005ece0b8b1d901a18c8d16d28ac4ad92521d (patch)
treee1c264c42217b9b2c4f93eb6722cac18cb755fa0
parent5c16ba4c4d5c0caf68d47e6ffb6f5a2f5923fed0 (diff)
downloadrockbox-997005ece0b8b1d901a18c8d16d28ac4ad92521d.tar.gz
rockbox-997005ece0b8b1d901a18c8d16d28ac4ad92521d.zip
Sansa Fuze: Fix bubbles controls (scrollwheel didn't work).
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@20338 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--apps/plugins/bubbles.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/plugins/bubbles.c b/apps/plugins/bubbles.c
index 1d199e80b2..db2439f99d 100644
--- a/apps/plugins/bubbles.c
+++ b/apps/plugins/bubbles.c
@@ -2306,7 +2306,8 @@ static int bubbles_handlebuttons(struct game_context* bb, bool animblock,
2306 int buttonres; 2306 int buttonres;
2307 long start; 2307 long start;
2308 const struct button_mapping *plugin_contexts[] 2308 const struct button_mapping *plugin_contexts[]
2309#if CONFIG_KEYPAD != SANSA_E200_PAD 2309#if (CONFIG_KEYPAD != SANSA_E200_PAD) && \
2310 (CONFIG_KEYPAD != SANSA_FUZE_PAD)
2310 = {generic_left_right_fire,generic_actions}; 2311 = {generic_left_right_fire,generic_actions};
2311#else 2312#else
2312 = {generic_directions,generic_actions}; 2313 = {generic_directions,generic_actions};