diff options
author | Franklin Wei <franklin@rockbox.org> | 2019-11-03 21:44:48 -0500 |
---|---|---|
committer | Franklin Wei <franklin@rockbox.org> | 2019-11-05 19:39:45 -0500 |
commit | 22638ede8d4ddee16f97ab24d3688d54f7d8ae7c (patch) | |
tree | 3232c2669dd496d48c1f447169819252c59447de | |
parent | 5f17935ac44b36ef9ccd9d030d4b3208ddefdd1c (diff) | |
download | rockbox-22638ede8d4ddee16f97ab24d3688d54f7d8ae7c.tar.gz rockbox-22638ede8d4ddee16f97ab24d3688d54f7d8ae7c.zip |
solitaire: reword menu to "Quit without Saving" and "Quit"
Patch submitted by Michael Carr.
Change-Id: I3a1555fe4b6182211203dc8770137e868c76e245
-rw-r--r-- | apps/plugins/solitaire.c | 6 |
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) "Resume Game", "Start New Game", "Draw Cards Option", "Help", "Playback Control", - "Save and Quit", "Quit"); + "Quit without Saving", "Quit"); _ingame = in_game; while (result < 0) @@ -1099,11 +1099,11 @@ static int solitaire_menu(bool in_game) break; case 5: - result = MENU_SAVE_AND_QUIT; + result = MENU_QUIT; break; case 6: - result = MENU_QUIT; + result = MENU_SAVE_AND_QUIT; break; } } |