aboutsummaryrefslogtreecommitdiff
path: root/engines/saga/actor.cpp
diff options
context:
space:
mode:
authorFilippos Karapetis2007-07-06 13:21:43 +0000
committerFilippos Karapetis2007-07-06 13:21:43 +0000
commit3efcdd7a4316d41fa9626ceee0f8491b463a76c7 (patch)
tree758f5ca452c5e017ce120defebb5e029cf8dc87e /engines/saga/actor.cpp
parentceca6a82f1f64c3a9e950628e1930f5f18aceb23 (diff)
downloadscummvm-rg350-3efcdd7a4316d41fa9626ceee0f8491b463a76c7.tar.gz
scummvm-rg350-3efcdd7a4316d41fa9626ceee0f8491b463a76c7.tar.bz2
scummvm-rg350-3efcdd7a4316d41fa9626ceee0f8491b463a76c7.zip
Modified ticksToMSec in IHNM, so that it waits for the correct amount of time. Many animations which were not displayed quite right are fixed now, including some small syncing issues with video and sound in some places
svn-id: r27939
Diffstat (limited to 'engines/saga/actor.cpp')
-rw-r--r--engines/saga/actor.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/saga/actor.cpp b/engines/saga/actor.cpp
index 743d0cd6c5..ecf7202725 100644
--- a/engines/saga/actor.cpp
+++ b/engines/saga/actor.cpp
@@ -1130,7 +1130,7 @@ void Actor::handleSpeech(int msec) {
}
if (_activeSpeech.stringsCount == 0) {
- _vm->_script->wakeUpThreadsDelayed(kWaitTypeSpeech, ticksToMSec(kScriptTimeTicksPerSecond / 3));
+ _vm->_script->wakeUpThreadsDelayed(kWaitTypeSpeech, _vm->ticksToMSec(kScriptTimeTicksPerSecond / 3));
}
return;