aboutsummaryrefslogtreecommitdiff
path: root/video
diff options
context:
space:
mode:
authorAndrei Prykhodko2018-06-29 13:41:44 +0300
committerAndrei Prykhodko2018-06-29 13:41:44 +0300
commit7703b3617e8b2dc9dbf0cc614344fd8fc66ca6a4 (patch)
tree8c33d361b68a6297c582921d445c9e6ef6129008 /video
parent6eaa7df0bc7342703615737ded61f68079333484 (diff)
downloadscummvm-rg350-7703b3617e8b2dc9dbf0cc614344fd8fc66ca6a4.tar.gz
scummvm-rg350-7703b3617e8b2dc9dbf0cc614344fd8fc66ca6a4.tar.bz2
scummvm-rg350-7703b3617e8b2dc9dbf0cc614344fd8fc66ca6a4.zip
VIDEO: fix seeking to first/second frame if it exceeds uint16
Diffstat (limited to 'video')
-rw-r--r--video/flic_decoder.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/video/flic_decoder.h b/video/flic_decoder.h
index 3697fb2cb1..d093daa3d0 100644
--- a/video/flic_decoder.h
+++ b/video/flic_decoder.h
@@ -91,8 +91,8 @@ protected:
int _curFrame;
bool _atRingFrame;
- uint16 _offsetFrame1;
- uint16 _offsetFrame2;
+ uint32 _offsetFrame1;
+ uint32 _offsetFrame2;
byte *_palette;
mutable bool _dirtyPalette;