diff options
author | Kevin Becker | 2014-11-19 07:44:44 -0500 |
---|---|---|
committer | Kevin Becker | 2014-11-19 07:44:44 -0500 |
commit | deeeb0646f5c374d0f7635cb5897e2df2962ad37 (patch) | |
tree | 5125f60397d9807d4cd7133935d30d2fbd1a0303 | |
parent | b12b1e1d256219364860db51977dd6bca7424ed1 (diff) | |
download | scummvm-rg350-deeeb0646f5c374d0f7635cb5897e2df2962ad37.tar.gz scummvm-rg350-deeeb0646f5c374d0f7635cb5897e2df2962ad37.tar.bz2 scummvm-rg350-deeeb0646f5c374d0f7635cb5897e2df2962ad37.zip |
ZVISION: Added detection for Zork Grand Inquisitor English DVD version.
-rw-r--r-- | engines/zvision/detection.cpp | 18 |
1 files changed, 16 insertions, 2 deletions
diff --git a/engines/zvision/detection.cpp b/engines/zvision/detection.cpp index 4f1d7fed3f..cd696557d9 100644 --- a/engines/zvision/detection.cpp +++ b/engines/zvision/detection.cpp @@ -87,10 +87,10 @@ static const ZVisionGameDescription gameDescriptions[] = { }, { - // Zork Grand Inquisitor English version + // Zork Grand Inquisitor English CD version { "zgi", - 0, + "CD", AD_ENTRY1s("SCRIPTS.ZFS", "81efd40ecc3d22531e211368b779f17f", 8336944), Common::EN_ANY, Common::kPlatformWindows, @@ -115,6 +115,20 @@ static const ZVisionGameDescription gameDescriptions[] = { }, { + // Zork Grand Inquisitor English DVD version + { + "zgi", + "DVD", + AD_ENTRY1s("SCRIPTS.ZFS", "03157a3399513bfaaf8dc6d5ab798b36", 8433326), + Common::EN_ANY, + Common::kPlatformWindows, + ADGF_NO_FLAGS, + GUIO1(GUIO_NONE) + }, + GID_GRANDINQUISITOR + }, + + { AD_TABLE_END_MARKER, GID_NONE } |