IMAGE: Handle bitmaps with an image size field of 0

This commit is contained in:
Matthew Hoops 2014-03-01 12:05:47 -05:00
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);