aboutsummaryrefslogtreecommitdiff
path: root/scumm/scumm.cpp
diff options
context:
space:
mode:
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: