aboutsummaryrefslogtreecommitdiff
path: root/scumm
diff options
context:
space:
mode:
authorPaweł Kołodziejski2004-01-08 08:47:09 +0000
committerPaweł Kołodziejski2004-01-08 08:47:09 +0000
commite0545d6dca17502e814c123ef65163b44d15fff8 (patch)
tree8aaf2283b017cfa37342af4f05af8dcae95499d4 /scumm
parent9931fe9a34b634a9d4dbb962e5bc4b546d6d4696 (diff)
downloadscummvm-rg350-e0545d6dca17502e814c123ef65163b44d15fff8.tar.gz
scummvm-rg350-e0545d6dca17502e814c123ef65163b44d15fff8.tar.bz2
scummvm-rg350-e0545d6dca17502e814c123ef65163b44d15fff8.zip
forgot about this
svn-id: r12238
Diffstat (limited to 'scumm')
-rw-r--r--scumm/sound.cpp2
-rw-r--r--scumm/string.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/scumm/sound.cpp b/scumm/sound.cpp
index 91f007e684..cf0e42d9ab 100644
--- a/scumm/sound.cpp
+++ b/scumm/sound.cpp
@@ -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);
diff --git a/scumm/string.cpp b/scumm/string.cpp
index be1c9128f3..1f85b44f9a 100644
--- a/scumm/string.cpp
+++ b/scumm/string.cpp
@@ -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;