SCUMM: Produce clear screen instead of bailing out in SMUSH codec 20
This commit is contained in:
parent
9dc0f38392
commit
20125684ba
1 changed files with 5 additions and 0 deletions
|
@ -774,6 +774,11 @@ void SmushPlayer::decodeFrameObject(int codec, const uint8 *src, int left, int t
|
||||||
if (_codec47)
|
if (_codec47)
|
||||||
_codec47->decode(_dst, src);
|
_codec47->decode(_dst, src);
|
||||||
break;
|
break;
|
||||||
|
case 20:
|
||||||
|
// Used by Full Throttle Classic (from Remastered)
|
||||||
|
warning("Codec 20 is not yet implemented");
|
||||||
|
memset(_dst, 0, _width * _height);
|
||||||
|
break;
|
||||||
default:
|
default:
|
||||||
error("Invalid codec for frame object : %d", codec);
|
error("Invalid codec for frame object : %d", codec);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue