From 87690220324587d9778e5bc39ee7787ad15f2ca5 Mon Sep 17 00:00:00 2001 From: athrxx Date: Sat, 24 Nov 2012 20:26:03 +0100 Subject: [PATCH] KYRA: fix bug #3589442 (LOL Floppy - No speech during intro) --- engines/kyra/script_tim.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/engines/kyra/script_tim.cpp b/engines/kyra/script_tim.cpp index f031381524c..c3580912237 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;