[Scummvm-git-logs] scummvm master -> 02dec192988b918812a78988cc70c4cdb2af0acc
dreammaster
dreammaster at scummvm.org
Mon Jul 3 21:59:26 CEST 2017
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:
02dec19298 TITANIC: Fix delay for Doorbot repeat will you help message
Commit: 02dec192988b918812a78988cc70c4cdb2af0acc
https://github.com/scummvm/scummvm/commit/02dec192988b918812a78988cc70c4cdb2af0acc
Author: Paul Gilbert (dreammaster at scummvm.org)
Date: 2017-07-03T15:59:17-04:00
Commit Message:
TITANIC: Fix delay for Doorbot repeat will you help message
Changed paths:
engines/titanic/npcs/doorbot.cpp
diff --git a/engines/titanic/npcs/doorbot.cpp b/engines/titanic/npcs/doorbot.cpp
index 58e11b0..74f6aca 100644
--- a/engines/titanic/npcs/doorbot.cpp
+++ b/engines/titanic/npcs/doorbot.cpp
@@ -460,7 +460,7 @@ bool CDoorbot::TrueTalkNotifySpeechEndedMsg(CTrueTalkNotifySpeechEndedMsg *msg)
case 10562:
if (_introMovieNum == 1) {
stopAnimTimer(_timerId);
- _timerId = addTimer(2, getRandomNumber(5000), 0);
+ _timerId = addTimer(2, getRandomNumber(5000) + 5000, 0);
}
break;
More information about the Scummvm-git-logs
mailing list