diff options
-rw-r--r-- | scumm/sound.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scumm/sound.cpp b/scumm/sound.cpp index 5eec8ecb07..d52442e737 100644 --- a/scumm/sound.cpp +++ b/scumm/sound.cpp @@ -416,8 +416,8 @@ void Sound::processSfxQueues() { if (_scumm->_vars[_scumm->VAR_TALK_ACTOR]) { //_sfxMode & 2) { act = _scumm->_vars[_scumm->VAR_TALK_ACTOR]; - if (_talkChannel < 1) - finished = true; + if (_talkChannel < 0) + finished = false; else if (_scumm->_mixer->_channels[_talkChannel] == NULL) { finished = true; } else |