[Scummvm-cvs-logs] SF.net SVN: scummvm: [26774] scummvm/trunk/engines/agos/detection.cpp
kirben at users.sourceforge.net
kirben at users.sourceforge.net
Mon May 7 10:29:30 CEST 2007
Revision: 26774
http://scummvm.svn.sourceforge.net/scummvm/?rev=26774&view=rev
Author: kirben
Date: 2007-05-07 01:29:29 -0700 (Mon, 07 May 2007)
Log Message:
-----------
Fix bug #1714096 - DIMP: Unable to start (regression).
Modified Paths:
--------------
scummvm/trunk/engines/agos/detection.cpp
Modified: scummvm/trunk/engines/agos/detection.cpp
===================================================================
--- scummvm/trunk/engines/agos/detection.cpp 2007-05-07 06:30:51 UTC (rev 26773)
+++ scummvm/trunk/engines/agos/detection.cpp 2007-05-07 08:29:29 UTC (rev 26774)
@@ -132,14 +132,14 @@
*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");
}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
More information about the Scummvm-git-logs
mailing list