aboutsummaryrefslogtreecommitdiff
path: root/engines/agos/detection.cpp
diff options
context:
space:
mode:
authorTravis Howell2007-05-07 08:29:29 +0000
committerTravis Howell2007-05-07 08:29:29 +0000
commit425bd5c13616850987400705cac94879ffecc590 (patch)
treebedcbbae7a383ed841ac92a966e55123dfaf4311 /engines/agos/detection.cpp
parent8c21d430bbbb04b85123850ec2103bdb2abad89f (diff)
downloadscummvm-rg350-425bd5c13616850987400705cac94879ffecc590.tar.gz
scummvm-rg350-425bd5c13616850987400705cac94879ffecc590.tar.bz2
scummvm-rg350-425bd5c13616850987400705cac94879ffecc590.zip
Fix bug #1714096 - DIMP: Unable to start (regression).
svn-id: r26774
Diffstat (limited to 'engines/agos/detection.cpp')
-rw-r--r--engines/agos/detection.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/agos/detection.cpp b/engines/agos/detection.cpp
index cc581328f7..e814625607 100644
--- a/engines/agos/detection.cpp
+++ b/engines/agos/detection.cpp
@@ -132,14 +132,14 @@ PluginError Engine_AGOS_create(OSystem *syst, Engine **engine) {
*engine = new AGOS::AGOSEngine_Simon2(syst);
} else if (!scumm_stricmp("feeble", gameid)) {
*engine = new AGOS::AGOSEngine_Feeble(syst);
-
+ } else if (!scumm_stricmp("dimp", gameid)) {
+ *engine = new AGOS::AGOSEngine_PuzzlePack(syst);
} else if (!scumm_stricmp("jumble", gameid)) {
*engine = new AGOS::AGOSEngine_PuzzlePack(syst);
} else if (!scumm_stricmp("puzzle", gameid)) {
*engine = new AGOS::AGOSEngine_PuzzlePack(syst);
} else if (!scumm_stricmp("swampy", gameid)) {
*engine = new AGOS::AGOSEngine_PuzzlePack(syst);
-
} else {
error("AGOS engine created with invalid gameid");
}