diff options
author | Benjamin Haisch | 2008-05-02 12:08:06 +0000 |
---|---|---|
committer | Benjamin Haisch | 2008-05-02 12:08:06 +0000 |
commit | d1ef9aa2131502cd4d1e9cc0e36c330fa7a259cd (patch) | |
tree | 7efea3353e34769f8e5c1a2f1dbf6f63c0fe9eaa /engines/made/detection.cpp | |
parent | 6fb9c2b84f9fa34504eefb3cf92917b72fd483b6 (diff) | |
download | scummvm-rg350-d1ef9aa2131502cd4d1e9cc0e36c330fa7a259cd.tar.gz scummvm-rg350-d1ef9aa2131502cd4d1e9cc0e36c330fa7a259cd.tar.bz2 scummvm-rg350-d1ef9aa2131502cd4d1e9cc0e36c330fa7a259cd.zip |
- Added patch #1955698: MADE: Add "The Manhole" Detection
- Added detection for Leather Goddesses of Phobos 2
Note that these two games will definitely not work as expected and will probably crash!
svn-id: r31810
Diffstat (limited to 'engines/made/detection.cpp')
-rw-r--r-- | engines/made/detection.cpp | 46 |
1 files changed, 40 insertions, 6 deletions
diff --git a/engines/made/detection.cpp b/engines/made/detection.cpp index e3bb4cd1dd..cae5e287ee 100644 --- a/engines/made/detection.cpp +++ b/engines/made/detection.cpp @@ -61,8 +61,10 @@ uint16 MadeEngine::getVersion() const { } static const PlainGameDescriptor madeGames[] = { - {"made", "MADE engine game"}, + {"made", "MADE engine game"}, + {"manhole", "The Manhole"}, {"rtz", "Return to Zork"}, + {"lgop2", "Leather Goddesses of Phobos 2"}, {0, 0} }; @@ -83,7 +85,7 @@ static const MadeGameDescription gameDescriptions[] = { Common::kPlatformPC, Common::ADGF_NO_FLAGS }, - 0, + GID_RTZ, 0, GF_CD, 0, @@ -99,7 +101,7 @@ static const MadeGameDescription gameDescriptions[] = { Common::kPlatformPC, Common::ADGF_NO_FLAGS }, - 0, + GID_RTZ, 0, GF_CD_COMPRESSED, 0, @@ -115,7 +117,7 @@ static const MadeGameDescription gameDescriptions[] = { Common::kPlatformPC, Common::ADGF_NO_FLAGS }, - 0, + GID_RTZ, 0, GF_CD_COMPRESSED, 0, @@ -132,7 +134,7 @@ static const MadeGameDescription gameDescriptions[] = { Common::kPlatformPC, Common::ADGF_NO_FLAGS }, - 0, + GID_RTZ, 0, GF_FLOPPY, 0, @@ -148,11 +150,43 @@ static const MadeGameDescription gameDescriptions[] = { Common::kPlatformPC, Common::ADGF_DEMO }, - 0, + GID_RTZ, 0, GF_DEMO, 0, }, + + { + // The Manhole: New and Enhanced + { + "manhole", + "", + AD_ENTRY1("manhole.dat", "cb21e31ed35c963208343bc995225b73"), + Common::EN_ANY, + Common::kPlatformPC, + Common::ADGF_NO_FLAGS + }, + GID_MANHOLE, + 0, + GF_CD, + 0, + }, + + { + // Leather Goddesses of Phobos 2 + { + "lgop2", + "", + AD_ENTRY1("lgop2.dat", "8137996db200ff67e8f172ff106f2e48"), + Common::EN_ANY, + Common::kPlatformPC, + Common::ADGF_NO_FLAGS + }, + GID_LGOP2, + 0, + GF_FLOPPY, + 0, + }, { AD_TABLE_END_MARKER, 0, 0, 0, 0 } }; |