diff options
author | Ben Castricum | 2016-11-29 10:41:45 +0100 |
---|---|---|
committer | Ben Castricum | 2016-11-29 20:15:13 +0100 |
commit | 38eb27212d32351e885806f96555e58f081c6844 (patch) | |
tree | 5cec0abe4fde83e0abd34873c2f49d94e3e97332 /engines/toon | |
parent | d3cd42e1d4bf4d7b341a51b3412501207d934733 (diff) | |
download | scummvm-rg350-38eb27212d32351e885806f96555e58f081c6844.tar.gz scummvm-rg350-38eb27212d32351e885806f96555e58f081c6844.tar.bz2 scummvm-rg350-38eb27212d32351e885806f96555e58f081c6844.zip |
ALL: savegame => saved game
Diffstat (limited to 'engines/toon')
-rw-r--r-- | engines/toon/toon.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/engines/toon/toon.cpp b/engines/toon/toon.cpp index 0dddc227ac..43fb3a1b1f 100644 --- a/engines/toon/toon.cpp +++ b/engines/toon/toon.cpp @@ -236,11 +236,11 @@ void ToonEngine::parseInput() { if (slotNum >= 0 && slotNum <= 9 && canLoadGameStateCurrently()) { if (loadGame(slotNum)) { // ok - Common::String buf = Common::String::format(_("Savegame #%d quick loaded"), slotNum); + Common::String buf = Common::String::format(_("Saved game #%d quick loaded"), slotNum); GUI::TimedMessageDialog dialog(buf, 1000); dialog.runModal(); } else { - Common::String buf = Common::String::format(_("Could not quick load the savegame #%d"), slotNum); + Common::String buf = Common::String::format(_("Could not quick load the saved game #%d"), slotNum); GUI::MessageDialog dialog(buf, "OK", 0); warning("%s", buf.c_str()); dialog.runModal(); @@ -3362,7 +3362,7 @@ bool ToonEngine::saveGame(int32 slot, const Common::String &saveGameDesc) { saveFile->writeSint32BE(TOON_SAVEGAME_VERSION); if (savegameDescription == "") { - savegameDescription = "Untitled savegame"; + savegameDescription = "Untitled saved game"; } saveFile->writeSint16BE(savegameDescription.size() + 1); |