diff options
author | Benjamin Haisch | 2008-05-07 07:15:42 +0000 |
---|---|---|
committer | Benjamin Haisch | 2008-05-07 07:15:42 +0000 |
commit | 202e4eb41072da9167430ec25a33153974c15bcf (patch) | |
tree | 3092b4b3dc51f64cc6d5410988527207e4fd81ad /engines/made/detection.cpp | |
parent | 9d5eea2d2c3f79147b15fb7920cd6d5de8e15d44 (diff) | |
download | scummvm-rg350-202e4eb41072da9167430ec25a33153974c15bcf.tar.gz scummvm-rg350-202e4eb41072da9167430ec25a33153974c15bcf.tar.bz2 scummvm-rg350-202e4eb41072da9167430ec25a33153974c15bcf.zip |
Added detection for RtZ CD version 1.0 (thanks to spookypeanut)
svn-id: r31917
Diffstat (limited to 'engines/made/detection.cpp')
-rw-r--r-- | engines/made/detection.cpp | 36 |
1 files changed, 35 insertions, 1 deletions
diff --git a/engines/made/detection.cpp b/engines/made/detection.cpp index 6da3189163..37eac1327b 100644 --- a/engines/made/detection.cpp +++ b/engines/made/detection.cpp @@ -74,7 +74,41 @@ namespace Made { static const MadeGameDescription gameDescriptions[] = { { - // Return to Zork - English CD version + // Return to Zork - English CD version 1.0 9/15/93 + // Patch #1953654 submitted by spookypeanut + { + "rtz", + "CD", + AD_ENTRY1("rtzcd.dat", "e95c38ded389e39cfbf87a8cb250b12e"), + Common::EN_ANY, + Common::kPlatformPC, + Common::ADGF_NO_FLAGS + }, + GID_RTZ, + 0, + GF_CD, + 0, + }, + + { + // Return to Zork - English CD version 1.0 9/15/93 + // Patch #1953654 submitted by spookypeanut + { + "rtz", + "CD", + AD_ENTRY1("rtzcd.red", "cd8b62ece4677c438688c1de3f5379b9"), + Common::EN_ANY, + Common::kPlatformPC, + Common::ADGF_NO_FLAGS + }, + GID_RTZ, + 0, + GF_CD, + 0, + }, + + { + // Return to Zork - English CD version 1.1 12/7/93 // NOTE: This detects the game via the rtzcd.dat which is inside rtzcd.red. // The entry below detects via rtzcd.red directly, which is the "official" way. { |