diff options
author | Vincent Hamm | 2012-08-13 23:20:10 -0700 |
---|---|---|
committer | Vincent Hamm | 2012-08-13 23:20:10 -0700 |
commit | 478be5f07a8528d19542802a7714cf4fd652f340 (patch) | |
tree | 2a79d7e8d57c5cae3cb74f99ffd6aff2b078a4b7 /engines/cine | |
parent | 320623a37b0014ba494edab7029072609801ee7d (diff) | |
download | scummvm-rg350-478be5f07a8528d19542802a7714cf4fd652f340.tar.gz scummvm-rg350-478be5f07a8528d19542802a7714cf4fd652f340.tar.bz2 scummvm-rg350-478be5f07a8528d19542802a7714cf4fd652f340.zip |
CINE: Fix regression in savegame system
Diffstat (limited to 'engines/cine')
-rw-r--r-- | engines/cine/anim.cpp | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/engines/cine/anim.cpp b/engines/cine/anim.cpp index d81828d9f6..60168831a1 100644 --- a/engines/cine/anim.cpp +++ b/engines/cine/anim.cpp @@ -709,13 +709,17 @@ int loadSet(const char *resourceName, int16 idx, int16 frameIndex =-1 ) { entry = idx < 0 ? emptyAnimSpace() : idx; assert(entry >= 0); + int16 startFrame = 0; + int16 endFrame = numSpriteInAnim; + if(frameIndex>=0) { - numSpriteInAnim = 1; + startFrame = frameIndex; + endFrame = frameIndex+1; ptr += 0x10 * frameIndex; } - for (int16 i = 0; i < numSpriteInAnim; i++, entry++) { + for (int16 i = startFrame; i < endFrame; i++, entry++) { Common::MemoryReadStream readS(ptr, 0x10); header2.field_0 = readS.readUint32BE(); |