diff options
author | Paul Gilbert | 2015-10-10 17:03:11 -0400 |
---|---|---|
committer | Paul Gilbert | 2015-10-10 17:03:11 -0400 |
commit | 980810703e66a82d9868ac2fd4968261299e7468 (patch) | |
tree | 64da6f1dcc222fd0410dd4cfc926aea77fbc4aca /engines/sherlock/scalpel | |
parent | 177409390f8e116bdc68e4c4741a92aebff5f53c (diff) | |
download | scummvm-rg350-980810703e66a82d9868ac2fd4968261299e7468.tar.gz scummvm-rg350-980810703e66a82d9868ac2fd4968261299e7468.tar.bz2 scummvm-rg350-980810703e66a82d9868ac2fd4968261299e7468.zip |
SHERLOCK: SS: Clean up speech playback to use playSpeech
Diffstat (limited to 'engines/sherlock/scalpel')
-rw-r--r-- | engines/sherlock/scalpel/scalpel_talk.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/sherlock/scalpel/scalpel_talk.cpp b/engines/sherlock/scalpel/scalpel_talk.cpp index 2fb2221b24..375b27bfad 100644 --- a/engines/sherlock/scalpel/scalpel_talk.cpp +++ b/engines/sherlock/scalpel/scalpel_talk.cpp @@ -498,7 +498,7 @@ OpcodeReturn ScalpelTalk::cmdSfxCommand(const byte *&str) { if (sound._voices) { for (int idx = 0; idx < 8 && str[idx] != '~'; ++idx) tempString += str[idx]; - sound.playSound(tempString, WAIT_RETURN_IMMEDIATELY); + sound.playSpeech(tempString); // Set voices to wait for more sound._voices = 2; |