diff options
author | Filippos Karapetis | 2017-02-11 20:48:52 +0200 |
---|---|---|
committer | Filippos Karapetis | 2017-02-11 20:48:52 +0200 |
commit | 5d119b603819add698ad852c6136083e26e64309 (patch) | |
tree | 5e2779eeed12c7b9ae8476515e4eb92110c4ba1f /engines/cryo | |
parent | c0d9752730b3f02ed5dc968643a3c5e9a09f1880 (diff) | |
download | scummvm-rg350-5d119b603819add698ad852c6136083e26e64309.tar.gz scummvm-rg350-5d119b603819add698ad852c6136083e26e64309.tar.bz2 scummvm-rg350-5d119b603819add698ad852c6136083e26e64309.zip |
CRYO: Add cryo.dat to all messages related to it
Diffstat (limited to 'engines/cryo')
-rw-r--r-- | engines/cryo/eden.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/engines/cryo/eden.cpp b/engines/cryo/eden.cpp index 18d8be2ace..f1d0f185e7 100644 --- a/engines/cryo/eden.cpp +++ b/engines/cryo/eden.cpp @@ -4778,15 +4778,15 @@ void EdenGame::loadpermfiles() { f.read(headerId, 8); headerId[8] = '\0'; if (strcmp(headerId, "CRYODATA")) - error("Invalid aux data file"); + error("Invalid cryo.dat aux data file"); if (f.readUint32LE() != CRYO_DAT_VER) - error("Incorrect aux data version"); + error("Incorrect data version for cryo.dat"); if (dataSize != expectedDataSize) - error("Mismatching data in aux data file (got %d, expected %d)", dataSize, expectedDataSize); + error("Mismatching data in cryo.dat aux data file (got %d, expected %d)", dataSize, expectedDataSize); } else - error("Can not load aux data"); + error("Can not load cryo.dat"); switch (_vm->getPlatform()) { case Common::kPlatformDOS: |