Skip to content

Commit

Permalink
SKY: change "savegame" into "saved game"
Browse files Browse the repository at this point in the history
  • Loading branch information
Ben Castricum committed Jul 1, 2016
1 parent 6a2059e commit 315ad62
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions devtools/skycpt/README
Expand Up @@ -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:
Expand Down
4 changes: 2 additions & 2 deletions engines/sky/control.cpp
Expand Up @@ -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);
Expand Down

0 comments on commit 315ad62

Please sign in to comment.