1
0
Fork 0
forked from len0rd/rockbox

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
This commit is contained in:
Dave Hooper 2010-03-19 23:24:22 +00:00
parent 0d9eeffe34
commit c28f56076e

View file

@ -176,7 +176,7 @@ static bool pacbox_menu(void)
MENUITEM_STRINGLIST(menu, "Pacbox Menu", NULL, MENUITEM_STRINGLIST(menu, "Pacbox Menu", NULL,
"Difficulty", "Pacmen Per Game", "Bonus Life", "Difficulty", "Pacmen Per Game", "Bonus Life",
"Ghost Names", "Display FPS", "Ghost Names", "Display FPS",
"Playback Control", "Restart", "Quit"); "Restart", "Quit");
rb->button_clear_queue(); rb->button_clear_queue();
@ -229,10 +229,7 @@ static bool pacbox_menu(void)
rb->set_option("Display FPS",&settings.showfps,INT, rb->set_option("Display FPS",&settings.showfps,INT,
noyes, 2, NULL); noyes, 2, NULL);
break; break;
case 5: /* playback control */ case 5: /* Restart */
playback_control(NULL);
break;
case 6: /* Restart */
need_restart=true; need_restart=true;
menu_quit=1; menu_quit=1;
break; break;
@ -255,7 +252,7 @@ static bool pacbox_menu(void)
restart game restart game
usb connected usb connected
*/ */
return (result==7); return (result==6);
} }