aboutsummaryrefslogtreecommitdiff
path: root/scumm/scumm.cpp
diff options
context:
space:
mode:
authorTravis Howell2005-05-21 14:20:28 +0000
committerTravis Howell2005-05-21 14:20:28 +0000
commit2b2c6a404f840096d977e20c1b48d307770c783e (patch)
tree83e72462adcb0ee932663b49f548f0ef6ae749d6 /scumm/scumm.cpp
parent31974eaead154ae6637b5655d5a5eb573ce342e2 (diff)
downloadscummvm-rg350-2b2c6a404f840096d977e20c1b48d307770c783e.tar.gz
scummvm-rg350-2b2c6a404f840096d977e20c1b48d307770c783e.tar.bz2
scummvm-rg350-2b2c6a404f840096d977e20c1b48d307770c783e.zip
Add HE73 version for opcode difference.
svn-id: r18207
Diffstat (limited to 'scumm/scumm.cpp')
-rw-r--r--scumm/scumm.cpp7
1 files changed, 4 insertions, 3 deletions
diff --git a/scumm/scumm.cpp b/scumm/scumm.cpp
index aca3a89dd0..0f1b92c196 100644
--- a/scumm/scumm.cpp
+++ b/scumm/scumm.cpp
@@ -253,17 +253,17 @@ static const ScummGameSettings scumm_settings[] = {
// Humongous Entertainment Scumm Version 7.2
{"catalog2", "Humongous Interactive Catalog 2", GID_HEGAME, 6, 72, MDT_NONE,
GF_USE_KEY | GF_NEW_COSTUMES, Common::kPlatformWindows, 0, 0},
- {"freddemo", "Freddi Fish 1: The Case of the Missing Kelp Seeds (Demo)", GID_HEGAME, 6, 72, MDT_NONE,
+ {"freddemo", "Freddi Fish 1: The Case of the Missing Kelp Seeds (Demo)", GID_HEGAME, 6, 73, MDT_NONE,
GF_USE_KEY | GF_NEW_COSTUMES | GF_MULTIPLE_VERSIONS, Common::kPlatformWindows, 0, 0},
{"farmdemo", "Let's Explore the Farm with Buzzy (Demo)", GID_HEGAME, 6, 72, MDT_NONE,
GF_USE_KEY | GF_NEW_COSTUMES | GF_MULTIPLE_VERSIONS, Common::kPlatformWindows, 0, 0},
- {"farm", "Let's Explore the Farm with Buzzy", GID_HEGAME, 6, 72, MDT_NONE,
+ {"farm", "Let's Explore the Farm with Buzzy", GID_HEGAME, 6, 73, MDT_NONE,
GF_USE_KEY | GF_NEW_COSTUMES, Common::kPlatformWindows, 0, 0},
{"airdemo", "Let's Explore the Airport with Buzzy (Demo)", GID_HEGAME, 6, 72, MDT_NONE,
GF_USE_KEY | GF_NEW_COSTUMES | GF_MULTIPLE_VERSIONS, Common::kPlatformWindows, 0, 0},
{"airport", "Let's Explore the Airport with Buzzy", GID_HEGAME, 6, 72, MDT_NONE,
GF_USE_KEY | GF_NEW_COSTUMES, Common::kPlatformWindows, 0, 0},
- {"jungle", "Let's Explore the Jungle with Buzzy", GID_HEGAME, 6, 72, MDT_NONE,
+ {"jungle", "Let's Explore the Jungle with Buzzy", GID_HEGAME, 6, 73, MDT_NONE,
GF_USE_KEY | GF_NEW_COSTUMES, Common::kPlatformWindows, 0, 0},
{"puttzoo", "Putt-Putt Saves the Zoo", GID_HEGAME, 6, 72, MDT_NONE,
@@ -2966,6 +2966,7 @@ Engine *Engine_SCUMM_create(GameDetector *detector, OSystem *syst) {
case 80:
engine = new ScummEngine_v80he(detector, syst, game, md5sum, substLastIndex);
break;
+ case 73:
case 72:
engine = new ScummEngine_v72he(detector, syst, game, md5sum, substLastIndex);
break;