aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnton (Zidane)2014-11-19 21:58:07 +0600
committerAnton (Zidane)2014-11-19 21:58:07 +0600
commit03d33e82bc15100584bec38cfa3d877a4882bcab (patch)
tree5125f60397d9807d4cd7133935d30d2fbd1a0303
parente6f66877627ff4ef03ad8d1ea8a64c4278593d22 (diff)
parentdeeeb0646f5c374d0f7635cb5897e2df2962ad37 (diff)
downloadscummvm-rg350-03d33e82bc15100584bec38cfa3d877a4882bcab.tar.gz
scummvm-rg350-03d33e82bc15100584bec38cfa3d877a4882bcab.tar.bz2
scummvm-rg350-03d33e82bc15100584bec38cfa3d877a4882bcab.zip
Merge pull request #2 from khbecker/zvision
ZVISION: (SECOND ATTEMPT) Add detection for Zork Nemesis and Zork Grand Inquisitor demos and Zork Grand Inquisitor DVD version
-rw-r--r--engines/zvision/detection.cpp46
1 files changed, 44 insertions, 2 deletions
diff --git a/engines/zvision/detection.cpp b/engines/zvision/detection.cpp
index 1492ade639..cd696557d9 100644
--- a/engines/zvision/detection.cpp
+++ b/engines/zvision/detection.cpp
@@ -73,10 +73,24 @@ static const ZVisionGameDescription gameDescriptions[] = {
},
{
- // Zork Grand Inquisitor English version
+ // Zork Nemesis English demo version
+ {
+ "znemesis",
+ "Demo",
+ AD_ENTRY1s("SCRIPTS.ZFS", "64f1e881394e9462305104f99513c833", 380539),
+ Common::EN_ANY,
+ Common::kPlatformWindows,
+ ADGF_DEMO,
+ GUIO1(GUIO_NONE)
+ },
+ GID_NEMESIS
+ },
+
+ {
+ // Zork Grand Inquisitor English CD version
{
"zgi",
- 0,
+ "CD",
AD_ENTRY1s("SCRIPTS.ZFS", "81efd40ecc3d22531e211368b779f17f", 8336944),
Common::EN_ANY,
Common::kPlatformWindows,
@@ -87,6 +101,34 @@ static const ZVisionGameDescription gameDescriptions[] = {
},
{
+ // Zork Grand Inquisitor English demo version
+ {
+ "zgi",
+ "Demo",
+ AD_ENTRY1s("SCRIPTS.ZFS", "71a2494fd2fb999347deb13401e9b998", 304239),
+ Common::EN_ANY,
+ Common::kPlatformWindows,
+ ADGF_DEMO,
+ GUIO1(GUIO_NONE)
+ },
+ GID_GRANDINQUISITOR
+ },
+
+ {
+ // 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
}