diff options
author | Thierry Crozat | 2017-02-11 14:31:38 +0000 |
---|---|---|
committer | Thierry Crozat | 2017-02-11 14:38:58 +0000 |
commit | b7e87d9e094221580d2ac0967b67683f0c0bb06f (patch) | |
tree | 35b75d96d7b7e3f5d3dec025abdd6050bfb10703 /engines/drascula | |
parent | 13dd57d34f76004306d6105339622592236bcba9 (diff) | |
download | scummvm-rg350-b7e87d9e094221580d2ac0967b67683f0c0bb06f.tar.gz scummvm-rg350-b7e87d9e094221580d2ac0967b67683f0c0bb06f.tar.bz2 scummvm-rg350-b7e87d9e094221580d2ac0967b67683f0c0bb06f.zip |
DRASCULA: Link speech and SFX volumes
Diffstat (limited to 'engines/drascula')
-rw-r--r-- | engines/drascula/detection.cpp | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/engines/drascula/detection.cpp b/engines/drascula/detection.cpp index ceaadd5088..49c7b0b14c 100644 --- a/engines/drascula/detection.cpp +++ b/engines/drascula/detection.cpp @@ -87,7 +87,7 @@ static const DrasculaGameDescription gameDescriptions[] = { Common::EN_ANY, Common::kPlatformDOS, GF_PACKED, - GUIO0() + GUIO1(GUIO_LINKSPEECHTOSFX) }, }, @@ -104,7 +104,7 @@ static const DrasculaGameDescription gameDescriptions[] = { Common::FR_FRA, Common::kPlatformDOS, GF_PACKED, - GUIO0() + GUIO1(GUIO_LINKSPEECHTOSFX) }, }, @@ -121,7 +121,7 @@ static const DrasculaGameDescription gameDescriptions[] = { Common::FR_FRA, Common::kPlatformDOS, GF_PACKED, - GUIO0() + GUIO1(GUIO_LINKSPEECHTOSFX) }, }, @@ -138,7 +138,7 @@ static const DrasculaGameDescription gameDescriptions[] = { Common::DE_DEU, Common::kPlatformDOS, GF_PACKED, - GUIO0() + GUIO1(GUIO_LINKSPEECHTOSFX) }, }, @@ -151,7 +151,7 @@ static const DrasculaGameDescription gameDescriptions[] = { Common::IT_ITA, Common::kPlatformDOS, GF_PACKED, - GUIO0() + GUIO1(GUIO_LINKSPEECHTOSFX) }, }, @@ -168,7 +168,7 @@ static const DrasculaGameDescription gameDescriptions[] = { Common::IT_ITA, Common::kPlatformDOS, GF_PACKED, - GUIO0() + GUIO1(GUIO_LINKSPEECHTOSFX) }, }, @@ -181,7 +181,7 @@ static const DrasculaGameDescription gameDescriptions[] = { Common::ES_ESP, Common::kPlatformDOS, GF_PACKED, - GUIO0() + GUIO1(GUIO_LINKSPEECHTOSFX) }, }, @@ -198,7 +198,7 @@ static const DrasculaGameDescription gameDescriptions[] = { Common::ES_ESP, Common::kPlatformDOS, GF_PACKED, - GUIO0() + GUIO1(GUIO_LINKSPEECHTOSFX) }, }, @@ -213,7 +213,7 @@ static const DrasculaGameDescription gameDescriptions[] = { Common::EN_ANY, Common::kPlatformDOS, ADGF_NO_FLAGS, - GUIO0() + GUIO1(GUIO_LINKSPEECHTOSFX) }, }, @@ -226,7 +226,7 @@ static const DrasculaGameDescription gameDescriptions[] = { Common::FR_FRA, Common::kPlatformDOS, ADGF_NO_FLAGS, - GUIO0() + GUIO1(GUIO_LINKSPEECHTOSFX) }, }, @@ -239,7 +239,7 @@ static const DrasculaGameDescription gameDescriptions[] = { Common::FR_FRA, Common::kPlatformDOS, ADGF_NO_FLAGS, - GUIO0() + GUIO1(GUIO_LINKSPEECHTOSFX) }, }, @@ -252,7 +252,7 @@ static const DrasculaGameDescription gameDescriptions[] = { Common::DE_DEU, Common::kPlatformDOS, ADGF_NO_FLAGS, - GUIO0() + GUIO1(GUIO_LINKSPEECHTOSFX) }, }, @@ -265,7 +265,7 @@ static const DrasculaGameDescription gameDescriptions[] = { Common::IT_ITA, Common::kPlatformDOS, ADGF_NO_FLAGS, - GUIO0() + GUIO1(GUIO_LINKSPEECHTOSFX) }, }, @@ -278,7 +278,7 @@ static const DrasculaGameDescription gameDescriptions[] = { Common::IT_ITA, Common::kPlatformDOS, ADGF_NO_FLAGS, - GUIO0() + GUIO1(GUIO_LINKSPEECHTOSFX) }, }, @@ -291,7 +291,7 @@ static const DrasculaGameDescription gameDescriptions[] = { Common::ES_ESP, Common::kPlatformDOS, ADGF_NO_FLAGS, - GUIO0() + GUIO1(GUIO_LINKSPEECHTOSFX) }, }, |