diff options
| author | Franklin Wei <frankhwei536@gmail.com> | 2016-06-15 23:13:12 -0400 |
|---|---|---|
| committer | Franklin Wei <frankhwei536@gmail.com> | 2016-06-15 23:13:12 -0400 |
| commit | 43d0ea6dd15cf5f31fe08c76947b686cc8ab77cb (patch) | |
| tree | 159cfdd9c2d267585820c6569707f506eaf90d57 /apps/plugins | |
| parent | e8206cf46687c0a4fd8a7d125e148773b85fdef7 (diff) | |
| download | rockbox-43d0ea6dd15cf5f31fe08c76947b686cc8ab77cb.zip rockbox-43d0ea6dd15cf5f31fe08c76947b686cc8ab77cb.tar.gz rockbox-43d0ea6dd15cf5f31fe08c76947b686cc8ab77cb.tar.bz2 rockbox-43d0ea6dd15cf5f31fe08c76947b686cc8ab77cb.tar.xz | |
fix
Change-Id: I72d59bb654920b17b031c870f73e8209f9b0cb28
Diffstat (limited to 'apps/plugins')
| -rw-r--r-- | apps/plugins/xworld/sys.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/plugins/xworld/sys.c b/apps/plugins/xworld/sys.c index a19868a..2754dc8 100644 --- a/apps/plugins/xworld/sys.c +++ b/apps/plugins/xworld/sys.c @@ -314,7 +314,7 @@ void sys_menu(struct System* sys) case 1: /* reset vm */ vm_init(&sys->e->vm); - vm_initForPart(&sys->e->vm, GAME_PART2); // This game part is the protection screen + vm_initForPart(&sys->e->vm, GAME_PART1); // This game part is the protection screen quit = true; break; case 2: @@ -624,7 +624,7 @@ static void do_pause_menu(struct System* sys) quit = true; break; case 1: - vm_initForPart(&sys->e->vm, GAME_PART2); + vm_initForPart(&sys->e->vm, GAME_PART1); quit = true; break; case 2: |