diff options
author | Dave Hooper <dave@beermex.com> | 2010-03-19 23:24:22 +0000 |
---|---|---|
committer | Dave Hooper <dave@beermex.com> | 2010-03-19 23:24:22 +0000 |
commit | c28f56076e3edd5a39ca0f74e369da6991509600 (patch) | |
tree | 627d1e8bfb72baa90acec6f6d5a3ec32df1f6f3e /apps/plugins/pacbox | |
parent | 0d9eeffe34ce2bcc714687f5d4749e3da3072d4d (diff) |
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')
-rw-r--r-- | apps/plugins/pacbox/pacbox.c | 9 |
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) MENUITEM_STRINGLIST(menu, "Pacbox Menu", NULL, "Difficulty", "Pacmen Per Game", "Bonus Life", "Ghost Names", "Display FPS", - "Playback Control", "Restart", "Quit"); + "Restart", "Quit"); rb->button_clear_queue(); @@ -229,10 +229,7 @@ static bool pacbox_menu(void) rb->set_option("Display FPS",&settings.showfps,INT, noyes, 2, NULL); break; - case 5: /* playback control */ - playback_control(NULL); - break; - case 6: /* Restart */ + case 5: /* Restart */ need_restart=true; menu_quit=1; break; @@ -255,7 +252,7 @@ static bool pacbox_menu(void) restart game usb connected */ - return (result==7); + return (result==6); } |