forgot about this

svn-id: r12238
This commit is contained in:
Paweł Kołodziejski 2004-01-08 08:47:09 +00:00
parent 9931fe9a34
commit e0545d6dca
2 changed files with 2 additions and 2 deletions

View file

@ -825,7 +825,7 @@ void Sound::startSfxSound(File *file, int file_size, PlayingSoundHandle *handle,
}
if (_scumm->_imuseDigital) {
_scumm->_imuseDigital->stopSound(kTalkSoundID);
//_scumm->_imuseDigital->stopSound(kTalkSoundID);
_scumm->_imuseDigital->startVoice(kTalkSoundID, input);
} else {
_scumm->_mixer->playInputStream(handle, input, false, 255, 0, id);

View file

@ -923,7 +923,7 @@ const byte *ScummEngine::translateTextAndPlaySpeech(const byte *ptr) {
// Play speech
if (!(_features & GF_DEMO) && (_gameId == GID_CMI)) // CMI demo does not have .IMX for voice
strcat(pointer, ".IMX");
_imuseDigital->stopSound(kTalkSoundID);
// _imuseDigital->stopSound(kTalkSoundID);
_imuseDigital->startVoice(kTalkSoundID, pointer);
ptr = _transText;