mirror of
https://github.com/libretro/scummvm.git
synced 2025-04-04 15:51:42 +00:00
IMAGE: Handle bitmaps with an image size field of 0
This commit is contained in:
parent
2218d14fb5
commit
0572fa5d35
@ -119,6 +119,10 @@ bool BitmapDecoder::loadStream(Common::SeekableReadStream &stream) {
|
||||
if (!_codec)
|
||||
return false;
|
||||
|
||||
// If the image size is zero, set it to the rest of the stream.
|
||||
if (imageSize == 0)
|
||||
imageSize = stream.size() - imageOffset;
|
||||
|
||||
// Grab the frame data
|
||||
Common::SeekableSubReadStream subStream(&stream, imageOffset, imageOffset + imageSize);
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user