[Scummvm-cvs-logs] scummvm master -> 87690220324587d9778e5bc39ee7787ad15f2ca5
athrxx
athrxx at scummvm.org
Sat Nov 24 20:31:47 CET 2012
This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .
Summary:
8769022032 KYRA: fix bug #3589442 (LOL Floppy - No speech during intro)
Commit: 87690220324587d9778e5bc39ee7787ad15f2ca5
https://github.com/scummvm/scummvm/commit/87690220324587d9778e5bc39ee7787ad15f2ca5
Author: athrxx (athrxx at scummvm.org)
Date: 2012-11-24T11:28:36-08:00
Commit Message:
KYRA: fix bug #3589442 (LOL Floppy - No speech during intro)
Changed paths:
engines/kyra/script_tim.cpp
diff --git a/engines/kyra/script_tim.cpp b/engines/kyra/script_tim.cpp
index f031381..c358091 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;
More information about the Scummvm-git-logs
mailing list