From 5d119b603819add698ad852c6136083e26e64309 Mon Sep 17 00:00:00 2001 From: Filippos Karapetis Date: Sat, 11 Feb 2017 20:48:52 +0200 Subject: CRYO: Add cryo.dat to all messages related to it --- engines/cryo/eden.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'engines/cryo/eden.cpp') 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: -- cgit v1.2.3