solitaire: reword menu to "Quit without Saving" and "Quit"

Patch submitted by Michael Carr.

Change-Id: I3a1555fe4b6182211203dc8770137e868c76e245
This commit is contained in:
Franklin Wei 2019-11-03 21:44:48 -05:00
parent 85a437780e
commit 05dd4390c6

View file

@ -1059,7 +1059,7 @@ static int solitaire_menu(bool in_game)
"Resume Game", "Start New Game", "Resume Game", "Start New Game",
"Draw Cards Option", "Draw Cards Option",
"Help", "Playback Control", "Help", "Playback Control",
"Save and Quit", "Quit"); "Quit without Saving", "Quit");
_ingame = in_game; _ingame = in_game;
while (result < 0) while (result < 0)
@ -1099,11 +1099,11 @@ static int solitaire_menu(bool in_game)
break; break;
case 5: case 5:
result = MENU_SAVE_AND_QUIT; result = MENU_QUIT;
break; break;
case 6: case 6:
result = MENU_QUIT; result = MENU_SAVE_AND_QUIT;
break; break;
} }
} }