diff options
author | RichieSams | 2015-01-10 22:19:46 -0600 |
---|---|---|
committer | RichieSams | 2015-01-10 22:19:46 -0600 |
commit | 468a26be405f17de00186f51978b00f6b2406726 (patch) | |
tree | 5893e4a8f79823acc165e3be28b3a1de15b838a9 | |
parent | 5b3705660dd075ed249b3f18ef106e71f259af21 (diff) | |
download | scummvm-rg350-468a26be405f17de00186f51978b00f6b2406726.tar.gz scummvm-rg350-468a26be405f17de00186f51978b00f6b2406726.tar.bz2 scummvm-rg350-468a26be405f17de00186f51978b00f6b2406726.zip |
ZVISION: Add detection for Nemesis CD - German version
CSCR.ZFS is the same between the German and the French versions. Therefore
we added a detection entry using the language file NEMESIS.STR
-rw-r--r-- | engines/zvision/detection.cpp | 22 |
1 files changed, 21 insertions, 1 deletions
diff --git a/engines/zvision/detection.cpp b/engines/zvision/detection.cpp index 1295f76705..545ebe35d4 100644 --- a/engines/zvision/detection.cpp +++ b/engines/zvision/detection.cpp @@ -82,7 +82,10 @@ static const ZVisionGameDescription gameDescriptions[] = { { "znemesis", 0, - AD_ENTRY1s("CSCR.ZFS", "f04113357b4748c13efcb58b4629887c", 2577873), + {{"CSCR.ZFS", 0, "f04113357b4748c13efcb58b4629887c", 2577873}, + {"NEMESIS.STR", 0, "333bcb17bbb7f57cae742fbbe44f56f3", 9219}, + AD_LISTEND + }, Common::FR_FRA, Common::kPlatformDOS, ADGF_NO_FLAGS, @@ -92,6 +95,23 @@ static const ZVisionGameDescription gameDescriptions[] = { }, { + // Zork Nemesis German version + { + "znemesis", + 0, + {{"CSCR.ZFS", 0, "f04113357b4748c13efcb58b4629887c", 2577873}, + {"NEMESIS.STR", 0, "3d1a12b907751653866cffc6d4dfb331", 9505}, + AD_LISTEND + }, + Common::DE_DEU, + Common::kPlatformDOS, + ADGF_NO_FLAGS, + GUIO4(GAMEOPTION_ORIGINAL_SAVELOAD, GAMEOPTION_DOUBLE_FPS, GAMEOPTION_ENABLE_VENUS, GAMEOPTION_DISABLE_ANIM_WHILE_TURNING) + }, + GID_NEMESIS + }, + + { // Zork Nemesis English demo version { "znemesis", |