IMAGE: Fix decoding Starship Titanic video file z404.avi

This commit is contained in:
Paul Gilbert 2016-09-01 22:33:12 -04:00
parent 636f033175
commit 23718d14ab

View file

@ -101,6 +101,9 @@ void MSRLEDecoder::decode8(Common::SeekableReadStream &stream) {
// Copy data
if (output + value > output_end) {
if (stream.pos() + value >= stream.size())
break;
else
stream.skip(value);
continue;
}