From a7e0fbe1a86d3ce7e2c387090ce1c373430dd289 Mon Sep 17 00:00:00 2001 From: Max Horn Date: Sat, 9 Jun 2007 18:09:12 +0000 Subject: Fix for bug #1734064 (FOA: Speech volume can not be set) -- we played speech as SFX, not speech, in many SCUMM games svn-id: r27253 --- engines/scumm/sound.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/engines/scumm/sound.cpp b/engines/scumm/sound.cpp index 4a468d151c..e5720a013f 100644 --- a/engines/scumm/sound.cpp +++ b/engines/scumm/sound.cpp @@ -643,7 +643,7 @@ void Sound::startTalkSound(uint32 offset, uint32 b, int mode, Audio::SoundHandle _vm->_imuseDigital->startVoice(kTalkSoundID, input); #endif } else { - _mixer->playInputStream(Audio::Mixer::kSFXSoundType, handle, input, id); + _mixer->playInputStream(Audio::Mixer::kSpeechSoundType, handle, input, id); } } } -- cgit v1.2.3