mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-02-10 22:49:00 +01:00
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];
|
||||
|
||||
// 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
|
||||
scanline[right+1] = {0, 0, 0}; // black border at end
|
||||
yuv444 black;
|
||||
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++)
|
||||
{
|
||||
|
Loading…
x
Reference in New Issue
Block a user