aboutsummaryrefslogtreecommitdiff
path: root/engines/scumm/scumm.cpp
diff options
context:
space:
mode:
authorTravis Howell2010-01-28 00:28:08 +0000
committerTravis Howell2010-01-28 00:28:08 +0000
commit0702bdab820ee6099011868009112b1a79b9deee (patch)
tree8d28a73da3010807a1de8b4bf0fb938476ddc31e /engines/scumm/scumm.cpp
parentca7d670b4b701022d9f748bcc43d9dbf39f18984 (diff)
downloadscummvm-rg350-0702bdab820ee6099011868009112b1a79b9deee.tar.gz
scummvm-rg350-0702bdab820ee6099011868009112b1a79b9deee.tar.bz2
scummvm-rg350-0702bdab820ee6099011868009112b1a79b9deee.zip
Fix regressions in Let's Explore the Jungle with Buzzy.
svn-id: r47622
Diffstat (limited to 'engines/scumm/scumm.cpp')
-rw-r--r--engines/scumm/scumm.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/scumm/scumm.cpp b/engines/scumm/scumm.cpp
index bc3715052b..9fd1e4052c 100644
--- a/engines/scumm/scumm.cpp
+++ b/engines/scumm/scumm.cpp
@@ -742,7 +742,7 @@ ScummEngine_v60he::~ScummEngine_v60he() {
ScummEngine_v70he::ScummEngine_v70he(OSystem *syst, const DetectorResult &dr)
: ScummEngine_v60he(syst, dr) {
- if (_game.platform == Common::kPlatformMacintosh && (_game.heversion >= 72 && _game.heversion <= 73))
+ if (_game.platform == Common::kPlatformMacintosh && (_game.heversion >= 72 && _game.heversion <= 74))
_resExtractor = new MacResExtractor(this);
else
_resExtractor = new Win32ResExtractor(this);