aboutsummaryrefslogtreecommitdiff
path: root/scumm/scumm.cpp
diff options
context:
space:
mode:
authorTravis Howell2004-09-06 00:58:40 +0000
committerTravis Howell2004-09-06 00:58:40 +0000
commitf1c0202e7c418d75f8c560366413b56f343f66b0 (patch)
treedd1f995303ff194b825b2e0c229ab43fdb0c3a14 /scumm/scumm.cpp
parentd21525d7fe93b9b6d15c442a1263149e89eb70bc (diff)
downloadscummvm-rg350-f1c0202e7c418d75f8c560366413b56f343f66b0.tar.gz
scummvm-rg350-f1c0202e7c418d75f8c560366413b56f343f66b0.tar.bz2
scummvm-rg350-f1c0202e7c418d75f8c560366413b56f343f66b0.zip
Add HE 80/90 classes, will be filled up over time.
svn-id: r14914
Diffstat (limited to 'scumm/scumm.cpp')
-rw-r--r--scumm/scumm.cpp8
1 files changed, 6 insertions, 2 deletions
diff --git a/scumm/scumm.cpp b/scumm/scumm.cpp
index d8c50f348b..6611bcadba 100644
--- a/scumm/scumm.cpp
+++ b/scumm/scumm.cpp
@@ -3336,10 +3336,14 @@ Engine *Engine_SCUMM_create(GameDetector *detector, OSystem *syst) {
case 6:
switch (game.heversion) {
#ifndef __PALM_OS__
- case 72:
- case 80:
case 90:
case 98:
+ engine = new ScummEngine_v90he(detector, syst, game);
+ break;
+ case 80:
+ engine = new ScummEngine_v80he(detector, syst, game);
+ break;
+ case 72:
engine = new ScummEngine_v72he(detector, syst, game);
break;
case 71: