summaryrefslogtreecommitdiff
path: root/apps/plugins/pacbox/pacbox.c
diff options
context:
space:
mode:
authorDave Hooper <dave@beermex.com>2010-03-19 23:24:22 +0000
committerDave Hooper <dave@beermex.com>2010-03-19 23:24:22 +0000
commitc28f56076e3edd5a39ca0f74e369da6991509600 (patch)
tree627d1e8bfb72baa90acec6f6d5a3ec32df1f6f3e /apps/plugins/pacbox/pacbox.c
parent0d9eeffe34ce2bcc714687f5d4749e3da3072d4d (diff)
downloadrockbox-c28f56076e3edd5a39ca0f74e369da6991509600.tar.gz
rockbox-c28f56076e3edd5a39ca0f74e369da6991509600.zip
Revert r22171 (+r22186) for pacbox, given that it doesn't work, and causes crashes on COP targets, and we in fact already had an open unresolved issue against this app (FS#8226) that would need to be resolved before being able to do this
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@25251 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/pacbox/pacbox.c')
-rw-r--r--apps/plugins/pacbox/pacbox.c9
1 files changed, 3 insertions, 6 deletions
diff --git a/apps/plugins/pacbox/pacbox.c b/apps/plugins/pacbox/pacbox.c
index 5f8ba90a04..badf171927 100644
--- a/apps/plugins/pacbox/pacbox.c
+++ b/apps/plugins/pacbox/pacbox.c
@@ -176,7 +176,7 @@ static bool pacbox_menu(void)
176 MENUITEM_STRINGLIST(menu, "Pacbox Menu", NULL, 176 MENUITEM_STRINGLIST(menu, "Pacbox Menu", NULL,
177 "Difficulty", "Pacmen Per Game", "Bonus Life", 177 "Difficulty", "Pacmen Per Game", "Bonus Life",
178 "Ghost Names", "Display FPS", 178 "Ghost Names", "Display FPS",
179 "Playback Control", "Restart", "Quit"); 179 "Restart", "Quit");
180 180
181 rb->button_clear_queue(); 181 rb->button_clear_queue();
182 182
@@ -229,10 +229,7 @@ static bool pacbox_menu(void)
229 rb->set_option("Display FPS",&settings.showfps,INT, 229 rb->set_option("Display FPS",&settings.showfps,INT,
230 noyes, 2, NULL); 230 noyes, 2, NULL);
231 break; 231 break;
232 case 5: /* playback control */ 232 case 5: /* Restart */
233 playback_control(NULL);
234 break;
235 case 6: /* Restart */
236 need_restart=true; 233 need_restart=true;
237 menu_quit=1; 234 menu_quit=1;
238 break; 235 break;
@@ -255,7 +252,7 @@ static bool pacbox_menu(void)
255 restart game 252 restart game
256 usb connected 253 usb connected
257 */ 254 */
258 return (result==7); 255 return (result==6);
259} 256}
260 257
261 258