diff options
-rw-r--r-- | devtools/skycpt/README | 4 | ||||
-rw-r--r-- | engines/sky/control.cpp | 4 |
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); |