aboutsummaryrefslogtreecommitdiff
path: root/engines/scumm/detection.cpp
diff options
context:
space:
mode:
authorTravis Howell2009-10-21 12:59:10 +0000
committerTravis Howell2009-10-21 12:59:10 +0000
commit746258f882b74cea1c5d5a34ef6c67e0669cdf09 (patch)
treed266519a68dd149709708c4b641d0fb0fa95015e /engines/scumm/detection.cpp
parent1e8883dcccfd490ba8844bb46cc90d5437c6f3f1 (diff)
downloadscummvm-rg350-746258f882b74cea1c5d5a34ef6c67e0669cdf09.tar.gz
scummvm-rg350-746258f882b74cea1c5d5a34ef6c67e0669cdf09.tar.bz2
scummvm-rg350-746258f882b74cea1c5d5a34ef6c67e0669cdf09.zip
Add patch from Tobias, for graphic support (backgrounds/objects) in PCE version of Loom, with minor changes.
svn-id: r45304
Diffstat (limited to 'engines/scumm/detection.cpp')
-rw-r--r--engines/scumm/detection.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/scumm/detection.cpp b/engines/scumm/detection.cpp
index 8beb2ef720..cbf6cd2cff 100644
--- a/engines/scumm/detection.cpp
+++ b/engines/scumm/detection.cpp
@@ -923,7 +923,7 @@ Common::Error ScummMetaEngine::createInstance(OSystem *syst, Engine **engine) co
*engine = new ScummEngine_v2(syst, res);
break;
case 3:
- if ((res.game.features & GF_OLD256) || res.game.platform == Common::kPlatformPCEngine)
+ if (res.game.features & GF_OLD256)
*engine = new ScummEngine_v3(syst, res);
else
*engine = new ScummEngine_v3old(syst, res);