Now Compiles on Visual Studio.
Fixed a PEBCAK issue where a developer was commiting things to git without checking they actually fixed the issues causing buildbot to fail.
This commit is contained in:
parent
71cc490969
commit
b6eb1af47b
|
@ -514,8 +514,13 @@ namespace EfbInterface
|
||||||
yuv444 scanline[640+2];
|
yuv444 scanline[640+2];
|
||||||
|
|
||||||
// our internal yuv444 type is not normalized, so black is {0, 0, 0} instead of {16, 128, 128}
|
// our internal yuv444 type is not normalized, so black is {0, 0, 0} instead of {16, 128, 128}
|
||||||
scanline[0] = {0, 0, 0}; // black border at start
|
yuv444 black;
|
||||||
scanline[right+1] = {0, 0, 0}; // black border at end
|
black.Y = 0;
|
||||||
|
black.U = 0;
|
||||||
|
black.V = 0;
|
||||||
|
|
||||||
|
scanline[0] = black; // black border at start
|
||||||
|
scanline[right+1] = black; // black border at end
|
||||||
|
|
||||||
for (u16 y = sourceRc.top; y < sourceRc.bottom; y++)
|
for (u16 y = sourceRc.top; y < sourceRc.bottom; y++)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue