diff options
author | Andrew Kurushin | 2004-12-24 13:42:05 +0000 |
---|---|---|
committer | Andrew Kurushin | 2004-12-24 13:42:05 +0000 |
commit | 841962dcb92d1c7c315b71b978bd52774543fc6f (patch) | |
tree | 4c6ecabb68627dab3053f6aca3b4968fd7d4f355 /saga | |
parent | 5f5bcfc6c2c7e05cd3a5c433481fa013cfe22e6b (diff) | |
download | scummvm-rg350-841962dcb92d1c7c315b71b978bd52774543fc6f.tar.gz scummvm-rg350-841962dcb92d1c7c315b71b978bd52774543fc6f.tar.bz2 scummvm-rg350-841962dcb92d1c7c315b71b978bd52774543fc6f.zip |
-fixing second speech line cut
svn-id: r16295
Diffstat (limited to 'saga')
-rw-r--r-- | saga/actor.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/saga/actor.cpp b/saga/actor.cpp index 9a43c46874..d48566b243 100644 --- a/saga/actor.cpp +++ b/saga/actor.cpp @@ -323,6 +323,7 @@ void Actor::handleSpeech(int msec) { _activeSpeech.strings[i - 1] = _activeSpeech.strings[i]; } _activeSpeech.stringsCount--; + _activeSpeech.playing = false; } if (!isSpeaking()) @@ -553,7 +554,7 @@ int Actor::direct(int msec) { // FIXME: HACK. This should be turned into cycle event. _lastTickMsec += msec; - if (_lastTickMsec > ticksToMSec(6)) { // fixme + if (_lastTickMsec > ticksToMSec(5)) { // fixme _lastTickMsec = 0; //process actions handleActions(msec, false); |