summaryrefslogtreecommitdiff
path: root/apps/plugins
diff options
context:
space:
mode:
authorJonathan Gordon <rockbox@jdgordon.info>2006-11-16 03:12:27 +0000
committerJonathan Gordon <rockbox@jdgordon.info>2006-11-16 03:12:27 +0000
commitef35bb9d475ca46b9d2efbba31a5a7a3f18d044a (patch)
treec35a439917060b2de273c1eb944dffdcc524e80d /apps/plugins
parent9ddcab8eb00e6553b6e78ebd01419c939666f10e (diff)
downloadrockbox-ef35bb9d475ca46b9d2efbba31a5a7a3f18d044a.tar.gz
rockbox-ef35bb9d475ca46b9d2efbba31a5a7a3f18d044a.zip
fix builds
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@11537 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins')
-rwxr-xr-xapps/plugins/bubbles.c2
-rw-r--r--apps/plugins/lib/pluginlib_actions.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/apps/plugins/bubbles.c b/apps/plugins/bubbles.c
index e5a094e053..cb6ba41b29 100755
--- a/apps/plugins/bubbles.c
+++ b/apps/plugins/bubbles.c
@@ -2490,7 +2490,7 @@ static int bubbles(struct game_context* bb) {
2490 rb->lcd_update(); 2490 rb->lcd_update();
2491 2491
2492 /* handle menu button presses */ 2492 /* handle menu button presses */
2493 button = pluginlib_getaction(rb,timeout,plugin_contexts,2); 2493 button = pluginlib_getaction(rb,TIMEOUT_BLOCK,plugin_contexts,2);
2494 switch(button){ 2494 switch(button){
2495 case PLA_START: /* start playing */ 2495 case PLA_START: /* start playing */
2496 bb->level = startlevel; 2496 bb->level = startlevel;
diff --git a/apps/plugins/lib/pluginlib_actions.h b/apps/plugins/lib/pluginlib_actions.h
index 57f537be9b..80c559d492 100644
--- a/apps/plugins/lib/pluginlib_actions.h
+++ b/apps/plugins/lib/pluginlib_actions.h
@@ -152,7 +152,7 @@ static const struct button_mapping generic_actions[] =
152 {PLA_FIRE_REPEAT, BUTTON_ON|BUTTON_REPEAT, BUTTON_NONE}, 152 {PLA_FIRE_REPEAT, BUTTON_ON|BUTTON_REPEAT, BUTTON_NONE},
153#elif CONFIG_KEYPAD == SANSA_E200_PAD 153#elif CONFIG_KEYPAD == SANSA_E200_PAD
154 {PLA_QUIT, BUTTON_POWER, BUTTON_NONE}, 154 {PLA_QUIT, BUTTON_POWER, BUTTON_NONE},
155 {PLA_START, BUTTON_PLAY, BUTTON_NONE}, 155 {PLA_START, BUTTON_UP, BUTTON_NONE},
156 {PLA_MENU, BUTTON_DOWN, BUTTON_NONE}, 156 {PLA_MENU, BUTTON_DOWN, BUTTON_NONE},
157 {PLA_FIRE, BUTTON_SELECT, BUTTON_NONE}, 157 {PLA_FIRE, BUTTON_SELECT, BUTTON_NONE},
158 {PLA_FIRE_REPEAT, BUTTON_SELECT|BUTTON_REPEAT, BUTTON_NONE}, 158 {PLA_FIRE_REPEAT, BUTTON_SELECT|BUTTON_REPEAT, BUTTON_NONE},