aboutsummaryrefslogtreecommitdiff
path: root/engines/scumm
diff options
context:
space:
mode:
authorTravis Howell2006-06-22 08:21:28 +0000
committerTravis Howell2006-06-22 08:21:28 +0000
commit59c296075aed24d755fdfc60a37fe95302250909 (patch)
tree57508e48d5dfe7827813f142521e95c04e28b508 /engines/scumm
parent7d16e0b170e3a25e914374ed03538943dbabc724 (diff)
downloadscummvm-rg350-59c296075aed24d755fdfc60a37fe95302250909.tar.gz
scummvm-rg350-59c296075aed24d755fdfc60a37fe95302250909.tar.bz2
scummvm-rg350-59c296075aed24d755fdfc60a37fe95302250909.zip
This additional check for Macintosh versions of HE games isn't required, as platform is already set correctly
svn-id: r23258
Diffstat (limited to 'engines/scumm')
-rw-r--r--engines/scumm/plugin.cpp6
1 files changed, 1 insertions, 5 deletions
diff --git a/engines/scumm/plugin.cpp b/engines/scumm/plugin.cpp
index 635fb2702b..62c0e70547 100644
--- a/engines/scumm/plugin.cpp
+++ b/engines/scumm/plugin.cpp
@@ -1052,12 +1052,8 @@ static void detectGames(const FSList &fslist, Common::List<DetectorResult> &resu
dr.game = *g;
dr.extra = g->variant; // FIXME: We (ab)use 'variant' for the 'extra' description for now.
- // 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 if (gfp->platform != Common::kPlatformUnknown) {
+ if (gfp->platform != Common::kPlatformUnknown)
dr.game.platform = gfp->platform;
- }
// If a variant has been specified, use that!