diff options
author | athrxx | 2012-11-24 20:26:03 +0100 |
---|---|---|
committer | athrxx | 2012-11-24 20:28:36 +0100 |
commit | 87690220324587d9778e5bc39ee7787ad15f2ca5 (patch) | |
tree | 16719e5ffc419a22615f551e289af30bc66bc06f /engines/kyra | |
parent | 5cf0bfaab97955fe4d41afc2d64f8226ba74b9b6 (diff) | |
download | scummvm-rg350-87690220324587d9778e5bc39ee7787ad15f2ca5.tar.gz scummvm-rg350-87690220324587d9778e5bc39ee7787ad15f2ca5.tar.bz2 scummvm-rg350-87690220324587d9778e5bc39ee7787ad15f2ca5.zip |
KYRA: fix bug #3589442 (LOL Floppy - No speech during intro)
Diffstat (limited to 'engines/kyra')
-rw-r--r-- | engines/kyra/script_tim.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/kyra/script_tim.cpp b/engines/kyra/script_tim.cpp index f031381524..c358091223 100644 --- a/engines/kyra/script_tim.cpp +++ b/engines/kyra/script_tim.cpp @@ -299,7 +299,7 @@ void TIMInterpreter::displayText(uint16 textId, int16 flags) { const bool isPC98 = (_vm->gameFlags().platform == Common::kPlatformPC98); if (filename[0] && (_vm->speechEnabled() || !_vm->gameFlags().isTalkie)) - _vm->sound()->voicePlay(filename); + _vm->sound()->voicePlay(filename, 0, 255, 255, !_vm->gameFlags().isTalkie); if (text[0] == '$') text = strchr(text + 1, '$') + 1; |