diff options
author | whiterandrek | 2018-04-27 12:55:39 +0300 |
---|---|---|
committer | Eugene Sandulenko | 2018-06-28 23:51:32 +0200 |
commit | 888f5b668fb4d06e38b0dc581b24ab37f5a1852e (patch) | |
tree | 1c7658fcb49330383e3b1390ee097312db7216f3 /engines/pink/objects/sequences | |
parent | ec96a3b1e7c888fa4b3a2957854942d7fed3e766 (diff) | |
download | scummvm-rg350-888f5b668fb4d06e38b0dc581b24ab37f5a1852e.tar.gz scummvm-rg350-888f5b668fb4d06e38b0dc581b24ab37f5a1852e.tar.bz2 scummvm-rg350-888f5b668fb4d06e38b0dc581b24ab37f5a1852e.zip |
PINK: added more constants
Diffstat (limited to 'engines/pink/objects/sequences')
-rw-r--r-- | engines/pink/objects/sequences/sequencer.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/pink/objects/sequences/sequencer.cpp b/engines/pink/objects/sequences/sequencer.cpp index f996dc1b1e..e0a1f5fea0 100644 --- a/engines/pink/objects/sequences/sequencer.cpp +++ b/engines/pink/objects/sequences/sequencer.cpp @@ -104,7 +104,7 @@ void Sequencer::skipToLastSubSequence() { void Sequencer::updateTimers() { uint time = _page->getGame()->getTotalPlayTime(); - if (time - _time <= 0x64) { + if (time - _time <= kTimersUpdateTime) { return; } |