diff options
author | Max Horn | 2006-06-22 17:57:37 +0000 |
---|---|---|
committer | Max Horn | 2006-06-22 17:57:37 +0000 |
commit | f5128aeaf5259841c29308bb1dcb7a8c4b65994f (patch) | |
tree | dca2a1b814e87b526dec850b1c3c26fe830303aa /engines/scumm | |
parent | 70b5453731facd8699c73db40445502f6e980eac (diff) | |
download | scummvm-rg350-f5128aeaf5259841c29308bb1dcb7a8c4b65994f.tar.gz scummvm-rg350-f5128aeaf5259841c29308bb1dcb7a8c4b65994f.tar.bz2 scummvm-rg350-f5128aeaf5259841c29308bb1dcb7a8c4b65994f.zip |
Tweak SCUMM detection a bit more -- do not hard code a check for the genmethod to determine the platform value, but rather use the platform value the GameFilenamePattern provides
svn-id: r23260
Diffstat (limited to 'engines/scumm')
-rw-r--r-- | engines/scumm/plugin.cpp | 15 |
1 files changed, 6 insertions, 9 deletions
diff --git a/engines/scumm/plugin.cpp b/engines/scumm/plugin.cpp index 62c0e70547..b980681220 100644 --- a/engines/scumm/plugin.cpp +++ b/engines/scumm/plugin.cpp @@ -991,16 +991,13 @@ static void detectGames(const FSList &fslist, Common::List<DetectorResult> &resu dr.game = *g; dr.game.gameid = d.md5Entry->gameid; - // Sanity check - if (dr.game.platform != Common::kPlatformUnknown && dr.game.platform != d.md5Entry->platform) - warning("SCUMM detectGames: Platform values differ for MD5 '%s': %d vs %d (please report to Fingolfin)", - md5str, dr.game.platform, d.md5Entry->platform); - - // Force game to have Mac platform, if required by HE game - if (dr.fp.genMethod == kGenHEMac || dr.fp.genMethod == kGenHEMacNoParens) { - dr.game.platform = Common::kPlatformMacintosh; - } else { + // Set the platform value. The value from the MD5 record has + // highest priority; if missing (i.e. set to unknown) we try + // to use that from the filename pattern record instead. + if (d.md5Entry->platform != Common::kPlatformUnknown) { dr.game.platform = d.md5Entry->platform; + } else if (gfp->platform != Common::kPlatformUnknown) { + dr.game.platform = gfp->platform; } // HACK: Special case to distinguish the V1 demo from the full version |