summaryrefslogtreecommitdiff
path: root/apps/plugins/bubbles.c
diff options
context:
space:
mode:
authorJonathan Gordon <rockbox@jdgordon.info>2006-11-18 11:16:53 +0000
committerJonathan Gordon <rockbox@jdgordon.info>2006-11-18 11:16:53 +0000
commit73e31d1af363905af315c9570a74744153f02c5c (patch)
tree9578324bbdcefe31c016bdc5ca58a73ee2eeafed /apps/plugins/bubbles.c
parent514f45bc1cf848ac2f651af9508fd9a8f52ef3ae (diff)
downloadrockbox-73e31d1af363905af315c9570a74744153f02c5c.tar.gz
rockbox-73e31d1af363905af315c9570a74744153f02c5c.zip
fix ondios again. Add a context for left/right/fire actions which seems
to work well git-svn-id: svn://svn.rockbox.org/rockbox/trunk@11546 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/bubbles.c')
-rwxr-xr-xapps/plugins/bubbles.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/plugins/bubbles.c b/apps/plugins/bubbles.c
index efc32f8a85..254539603f 100755
--- a/apps/plugins/bubbles.c
+++ b/apps/plugins/bubbles.c
@@ -2337,7 +2337,7 @@ static int bubbles_handlebuttons(struct game_context* bb, bool animblock,
2337 int buttonres; 2337 int buttonres;
2338 long start; 2338 long start;
2339 const struct button_mapping *plugin_contexts[] 2339 const struct button_mapping *plugin_contexts[]
2340 = {generic_directions,generic_actions}; 2340 = {generic_left_right_fire,generic_actions};
2341 button = pluginlib_getaction(rb,timeout,plugin_contexts,2); 2341 button = pluginlib_getaction(rb,timeout,plugin_contexts,2);
2342 2342
2343#ifdef HAS_BUTTON_HOLD 2343#ifdef HAS_BUTTON_HOLD
@@ -2417,7 +2417,7 @@ static int bubbles(struct game_context* bb) {
2417 bool showscores = false; 2417 bool showscores = false;
2418 long timeout; 2418 long timeout;
2419 const struct button_mapping *plugin_contexts[] 2419 const struct button_mapping *plugin_contexts[]
2420 = {generic_directions,generic_actions}; 2420 = {generic_actions,generic_directions};
2421 2421
2422 bubbles_setcolors(); 2422 bubbles_setcolors();
2423 2423