diff options
author | Paul Gilbert | 2010-10-22 23:39:29 +0000 |
---|---|---|
committer | Paul Gilbert | 2010-10-22 23:39:29 +0000 |
commit | fe06b7d151f4752b51191cd3475ba85953df2d6a (patch) | |
tree | 126a92a49c9a13aa67319d649706183050a1ec55 /engines/tinsel | |
parent | 3fb739f90a67c96abf3a3025487bb509b829fa22 (diff) | |
download | scummvm-rg350-fe06b7d151f4752b51191cd3475ba85953df2d6a.tar.gz scummvm-rg350-fe06b7d151f4752b51191cd3475ba85953df2d6a.tar.bz2 scummvm-rg350-fe06b7d151f4752b51191cd3475ba85953df2d6a.zip |
TINSEL: Fix for #3091314 - Added extra detection entries for Multi-lingual DW1
This adds in German, Italian, and Spanish as detection entries, so a user can immediately select what language to run the game in.
svn-id: r53724
Diffstat (limited to 'engines/tinsel')
-rw-r--r-- | engines/tinsel/detection_tables.h | 69 |
1 files changed, 69 insertions, 0 deletions
diff --git a/engines/tinsel/detection_tables.h b/engines/tinsel/detection_tables.h index f1a38d53c8..239e06c8dd 100644 --- a/engines/tinsel/detection_tables.h +++ b/engines/tinsel/detection_tables.h @@ -102,6 +102,75 @@ static const TinselGameDescription gameDescriptions[] = { TINSEL_V1, }, + { + { + "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::DE_DEU, + Common::kPlatformPC, + ADGF_DROPLANGUAGE, + GUIO_NOSPEECH + }, + GID_DW1, + 0, + GF_FLOPPY | GF_USE_4FLAGS | GF_ENHANCED_AUDIO_SUPPORT, + TINSEL_V1, + }, + + { + { + "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::IT_ITA, + Common::kPlatformPC, + ADGF_DROPLANGUAGE, + GUIO_NOSPEECH + }, + GID_DW1, + 0, + GF_FLOPPY | GF_USE_4FLAGS | GF_ENHANCED_AUDIO_SUPPORT, + TINSEL_V1, + }, + + { + { + "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::ES_ESP, + Common::kPlatformPC, + ADGF_DROPLANGUAGE, + GUIO_NOSPEECH + }, + GID_DW1, + 0, + GF_FLOPPY | GF_USE_4FLAGS | GF_ENHANCED_AUDIO_SUPPORT, + TINSEL_V1, + }, + { // Floppy V1 version, with *.gra files { "dw", |