diff options
author | Matthew Hoops | 2013-01-29 22:25:24 -0500 |
---|---|---|
committer | Matthew Hoops | 2013-01-29 22:25:24 -0500 |
commit | 9a40cdc40d1a52dbdc8c73cdc1329768d7868586 (patch) | |
tree | 426054e85753560a1a67b713ec30ff5b12446b7e /engines/pegasus | |
parent | b50cac637ece07c87e39232a1e8fe7262ace06f2 (diff) | |
download | scummvm-rg350-9a40cdc40d1a52dbdc8c73cdc1329768d7868586.tar.gz scummvm-rg350-9a40cdc40d1a52dbdc8c73cdc1329768d7868586.tar.bz2 scummvm-rg350-9a40cdc40d1a52dbdc8c73cdc1329768d7868586.zip |
PEGASUS: Fix lid sequences missing a frame
Diffstat (limited to 'engines/pegasus')
-rw-r--r-- | engines/pegasus/elements.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/pegasus/elements.cpp b/engines/pegasus/elements.cpp index c84d555444..87fb69a557 100644 --- a/engines/pegasus/elements.cpp +++ b/engines/pegasus/elements.cpp @@ -259,8 +259,8 @@ void FrameSequence::openFrameSequence() { _frameTimes.clear(); for (uint32 i = 0; i < _numFrames; i++) { TimeValue time = res->readUint32BE(); - _duration += time; _frameTimes.push_back(_duration); + _duration += time; } setScale(scale); |