aboutsummaryrefslogtreecommitdiff
path: root/engines/lure/detection.cpp
diff options
context:
space:
mode:
authorPaul Gilbert2007-09-23 22:16:46 +0000
committerPaul Gilbert2007-09-23 22:16:46 +0000
commit8685b1b45648ffb89468537e8154afbc074a2e4d (patch)
treeed695e45ad5b7b8150eeda92366659ac814613c8 /engines/lure/detection.cpp
parentffa264b9f747a539c898d38a8b944326291b255a (diff)
downloadscummvm-rg350-8685b1b45648ffb89468537e8154afbc074a2e4d.tar.gz
scummvm-rg350-8685b1b45648ffb89468537e8154afbc074a2e4d.tar.bz2
scummvm-rg350-8685b1b45648ffb89468537e8154afbc074a2e4d.zip
Added vaildation of new lure.dat file, and added MD5 for Italian version of game
svn-id: r29072
Diffstat (limited to 'engines/lure/detection.cpp')
-rw-r--r--engines/lure/detection.cpp32
1 files changed, 17 insertions, 15 deletions
diff --git a/engines/lure/detection.cpp b/engines/lure/detection.cpp
index daf54d7425..f52f1ca4fb 100644
--- a/engines/lure/detection.cpp
+++ b/engines/lure/detection.cpp
@@ -55,6 +55,8 @@ struct GameSettings {
static const GameSettings lure_games[] = {
{ "lure", "Lure of the Temptress", GI_LURE, GF_FLOPPY, Common::EN_ANY,
"b2a8aa6d7865813a17a3c636e063572e", "disk1.vga" },
+ { "lure", "Lure of the Temptress", GI_LURE, GF_FLOPPY, Common::IT_ITA,
+ "cf69d5ada228dd74f89046691c16aafb", "disk1.vga" },
/*
{ "lure", "Lure of the Temptress", GI_LURE, GF_FLOPPY, Common::DE_DEU,
"7aa19e444dab1ac7194d9f7a40ffe54a", "disk1.vga" },
@@ -160,21 +162,20 @@ void LureEngine::detectGame() {
// Check the version of the lure.dat file
Common::File f;
- if (!f.open(SUPPORT_FILENAME)) {
- error("Error opening %s for validation", SUPPORT_FILENAME);
- } else {
- f.seek(0xbf * 8);
VersionStructure version;
- f.read(&version, sizeof(VersionStructure));
- f.close();
-
- if (READ_LE_UINT16(&version.id) != 0xffff)
- error("Error validating %s - file is invalid or out of date", SUPPORT_FILENAME);
- else if ((version.vMajor != LURE_DAT_MAJOR) || (version.vMinor != LURE_DAT_MINOR))
- error("Incorrect version of %s file - expected %d.%d but got %d.%d",
- SUPPORT_FILENAME, LURE_DAT_MAJOR, LURE_DAT_MINOR,
- version.vMajor, version.vMinor);
- }
+ if (!f.open(SUPPORT_FILENAME))
+ error("Error opening %s for validation", SUPPORT_FILENAME);
+
+ f.seek(0xbf * 8);
+ f.read(&version, sizeof(VersionStructure));
+ f.close();
+
+ if (READ_LE_UINT16(&version.id) != 0xffff)
+ error("Error validating %s - file is invalid or out of date", SUPPORT_FILENAME);
+ else if ((version.vMajor != LURE_DAT_MAJOR) || (version.vMinor != LURE_DAT_MINOR))
+ error("Incorrect version of %s file - expected %d.%d but got %d.%d",
+ SUPPORT_FILENAME, LURE_DAT_MAJOR, LURE_DAT_MINOR,
+ version.vMajor, version.vMinor);
// Do an md5 check
@@ -208,7 +209,8 @@ void LureEngine::detectGame() {
debug("Unknown MD5 (%s)! Please report the details (language, platform, etc.) of this game to the ScummVM team", md5str);
_features = GF_LNGUNK || GF_FLOPPY;
_game = GI_LURE;
- }
+
+ }
}
} // End of namespace Lure