aboutsummaryrefslogtreecommitdiff
path: root/scumm/scumm.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'scumm/scumm.cpp')
-rw-r--r--scumm/scumm.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/scumm/scumm.cpp b/scumm/scumm.cpp
index 33d1951460..8a1c2b4bcd 100644
--- a/scumm/scumm.cpp
+++ b/scumm/scumm.cpp
@@ -2878,8 +2878,7 @@ Engine *Engine_SCUMM_create(GameDetector *detector, OSystem *syst) {
switch (game.version) {
case 1:
case 2:
- // Limit to C64 MM?
- if (game.platform == Common::kPlatformC64)
+ if (game.id == GID_MANIAC && game.platform == Common::kPlatformC64)
engine = new ScummEngine_c64(detector, syst, game, md5sum);
else
engine = new ScummEngine_v2(detector, syst, game, md5sum);