aboutsummaryrefslogtreecommitdiff
path: root/saga/actor.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'saga/actor.cpp')
-rw-r--r--saga/actor.cpp3
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);