mirror of
https://github.com/libretro/scummvm.git
synced 2025-01-22 01:57:16 +00:00
VIDEO: Fix Bink clearing color comment
YUV 000 is a green, not black. Thanks DrMcCoy for noticing and fixing the issue.
This commit is contained in:
parent
195b4cbd20
commit
43e04d19c4
@ -302,7 +302,7 @@ BinkDecoder::BinkVideoTrack::BinkVideoTrack(uint32 width, uint32 height, const G
|
||||
_oldPlanes[2] = new byte[_uvBlockWidth * 8 * _uvBlockHeight * 8]; // V, 1/4 resolution
|
||||
_oldPlanes[3] = new byte[_yBlockWidth * 8 * _yBlockHeight * 8]; // A
|
||||
|
||||
// Initialize the video with solid black
|
||||
// Initialize the video with solid green
|
||||
memset(_curPlanes[0], 0, _yBlockWidth * 8 * _yBlockHeight * 8);
|
||||
memset(_curPlanes[1], 0, _uvBlockWidth * 8 * _uvBlockHeight * 8);
|
||||
memset(_curPlanes[2], 0, _uvBlockWidth * 8 * _uvBlockHeight * 8);
|
||||
|
Loading…
x
Reference in New Issue
Block a user