aboutsummaryrefslogtreecommitdiff
path: root/engines/agos/detection.cpp
diff options
context:
space:
mode:
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");
}