aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Castricum2016-06-14 16:15:52 +0200
committerBen Castricum2016-07-01 07:34:28 +0200
commit315ad620af5b1481c595d60ec481355b88f67537 (patch)
tree2559c46552bdbb6962e197b4fd88b9d9a8e2d82f
parent6a2059e13fee46cce3af57a3849969576412559a (diff)
downloadscummvm-rg350-315ad620af5b1481c595d60ec481355b88f67537.tar.gz
scummvm-rg350-315ad620af5b1481c595d60ec481355b88f67537.tar.bz2
scummvm-rg350-315ad620af5b1481c595d60ec481355b88f67537.zip
SKY: change "savegame" into "saved game"
-rw-r--r--devtools/skycpt/README4
-rw-r--r--engines/sky/control.cpp4
2 files changed, 4 insertions, 4 deletions
diff --git a/devtools/skycpt/README b/devtools/skycpt/README
index 4b303cb0e9..ec7828f35c 100644
--- a/devtools/skycpt/README
+++ b/devtools/skycpt/README
@@ -16,8 +16,8 @@ This program was only included in ScummVM's source tree because the Debian licen
forces us to.
Instead download the file from http://www.scummvm.org/
Also, please be aware that if you create your own CPT file (if it isn't exactly the same as the
-one we offer for download at www.scummvm.org), it will be incompatible and the savegames produced
-using the file will be incompatible with ScummVM using the normal CPT file.
+one we offer for download at www.scummvm.org), it will be incompatible and the saved games
+produced using the file will be incompatible with ScummVM using the normal CPT file.
The incompatibility will not be detected by ScummVM, it will most probably simply crash.
If you still want to waste your time by creating this file:
diff --git a/engines/sky/control.cpp b/engines/sky/control.cpp
index 9f4b6c21c6..a3fef3c0cd 100644
--- a/engines/sky/control.cpp
+++ b/engines/sky/control.cpp
@@ -1338,13 +1338,13 @@ uint16 Control::parseSaveData(uint8 *srcBuf) {
displayMessage(0, "Unknown save file revision (%d)", saveRev);
return RESTORE_FAILED;
} else if (saveRev < OLD_SAVEGAME_TYPE) {
- displayMessage(0, "This savegame version is unsupported.");
+ displayMessage(0, "This saved game version is unsupported.");
return RESTORE_FAILED;
}
LODSD(srcPos, gameVersion);
if (gameVersion != SkyEngine::_systemVars.gameVersion) {
if ((!SkyEngine::isCDVersion()) || (gameVersion < 365)) { // cd versions are compatible
- displayMessage(NULL, "This savegame was created by\n"
+ displayMessage(NULL, "This saved game was created by\n"
"Beneath a Steel Sky v0.0%03d\n"
"It cannot be loaded by this version (v0.0%3d)",
gameVersion, SkyEngine::_systemVars.gameVersion);