diff options
author | Max Horn | 2008-09-11 09:26:27 +0000 |
---|---|---|
committer | Max Horn | 2008-09-11 09:26:27 +0000 |
commit | 62a75f2615a2dbb0a30e26e64be2122cde5efbb8 (patch) | |
tree | 179d3549a6355c36b738b213d4204a1e5102be31 | |
parent | 14ac01a11a3c0179ec6b190111ff115fcfacb403 (diff) | |
download | scummvm-rg350-62a75f2615a2dbb0a30e26e64be2122cde5efbb8.tar.gz scummvm-rg350-62a75f2615a2dbb0a30e26e64be2122cde5efbb8.tar.bz2 scummvm-rg350-62a75f2615a2dbb0a30e26e64be2122cde5efbb8.zip |
Added detection for 4-language floppy version of DW (see report on forum post 39703)
svn-id: r34486
-rw-r--r-- | engines/tinsel/detection.cpp | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/engines/tinsel/detection.cpp b/engines/tinsel/detection.cpp index bf59aae19b..526d72e4a4 100644 --- a/engines/tinsel/detection.cpp +++ b/engines/tinsel/detection.cpp @@ -112,6 +112,30 @@ static const TinselGameDescription gameDescriptions[] = { TINSEL_V1, }, + { // Multilingual floppy with *.gra files. + // Note: It contains no english subtitles. + // Reported on our forums. + { + "dw", + "Floppy", + { + {"dw.gra", 0, "c8808ccd988d603dd35dff42013ae7fd", 781656}, + {"french.txt", 0, NULL, -1}, + {"german.txt", 0, NULL, -1}, + {"italian.txt", 0, NULL, -1}, + {"spanish.txt", 0, NULL, -1}, + {NULL, 0, NULL, 0} + }, + Common::FR_FRA, + Common::kPlatformPC, + Common::ADGF_DROPLANGUAGE + }, + GID_DW1, + 0, + GF_FLOPPY | GF_USE_4FLAGS, + TINSEL_V1, + }, + { // English CD. This version has *.gra files { "dw", |