summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--apps/plugins/solitaire.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/plugins/solitaire.c b/apps/plugins/solitaire.c
index 7440160470..1ee79bb86a 100644
--- a/apps/plugins/solitaire.c
+++ b/apps/plugins/solitaire.c
@@ -1059,7 +1059,7 @@ static int solitaire_menu(bool in_game)
1059 "Resume Game", "Start New Game", 1059 "Resume Game", "Start New Game",
1060 "Draw Cards Option", 1060 "Draw Cards Option",
1061 "Help", "Playback Control", 1061 "Help", "Playback Control",
1062 "Save and Quit", "Quit"); 1062 "Quit without Saving", "Quit");
1063 _ingame = in_game; 1063 _ingame = in_game;
1064 1064
1065 while (result < 0) 1065 while (result < 0)
@@ -1099,11 +1099,11 @@ static int solitaire_menu(bool in_game)
1099 break; 1099 break;
1100 1100
1101 case 5: 1101 case 5:
1102 result = MENU_SAVE_AND_QUIT; 1102 result = MENU_QUIT;
1103 break; 1103 break;
1104 1104
1105 case 6: 1105 case 6:
1106 result = MENU_QUIT; 1106 result = MENU_SAVE_AND_QUIT;
1107 break; 1107 break;
1108 } 1108 }
1109 } 1109 }