plugins: Fix issues in 2048
One of these was an unintentional fallthrough -- if you said no to 'quit without saving' it would save and quit. Change-Id: I33828b58962a05adab65ac5f71dd0e2b1e07001b
This commit is contained in:
parent
005c414e5f
commit
bdd9c8dfc8
1 changed files with 5 additions and 6 deletions
|
@ -811,8 +811,7 @@ static int do_2048_pause_menu(void)
|
|||
"Help",
|
||||
"Quit without Saving",
|
||||
"Quit");
|
||||
bool quit = false;
|
||||
while(!quit)
|
||||
while(1)
|
||||
{
|
||||
switch(rb->do_menu(&menu, &sel, NULL, false))
|
||||
{
|
||||
|
@ -849,9 +848,10 @@ static int do_2048_pause_menu(void)
|
|||
}
|
||||
case 6:
|
||||
return 3;
|
||||
default:
|
||||
break;
|
||||
}
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
|
||||
static void exit_handler(void)
|
||||
|
@ -1017,8 +1017,7 @@ static enum plugin_status do_2048_menu(void)
|
|||
"Help",
|
||||
"Quit without Saving",
|
||||
"Quit");
|
||||
bool quit = false;
|
||||
while(!quit)
|
||||
while(true)
|
||||
{
|
||||
switch(rb->do_menu(&menu, &sel, NULL, false))
|
||||
{
|
||||
|
@ -1065,6 +1064,7 @@ static enum plugin_status do_2048_menu(void)
|
|||
case 5:
|
||||
if(confirm_quit())
|
||||
return PLUGIN_OK;
|
||||
break;
|
||||
case 6:
|
||||
if(loaded)
|
||||
save_game();
|
||||
|
@ -1073,7 +1073,6 @@ static enum plugin_status do_2048_menu(void)
|
|||
break;
|
||||
}
|
||||
}
|
||||
return PLUGIN_OK;
|
||||
}
|
||||
|
||||
/* plugin entry point */
|
||||
|
|
Loading…
Reference in a new issue