[NES] add alpha bits to video provider
This commit is contained in:
parent
599675178b
commit
3ceb4ea890
|
@ -131,7 +131,7 @@ namespace BizHawk.Emulation.Consoles.Nintendo
|
|||
for (int x = 0; x < 256; x++)
|
||||
{
|
||||
int pixel = emu.ppu.xbuf[i];
|
||||
pixels[i] = emu.CompleteDecodeColor(pixel);
|
||||
pixels[i] = unchecked(emu.CompleteDecodeColor(pixel) | (int)0xFF000000);
|
||||
i++;
|
||||
}
|
||||
return pixels;
|
||||
|
|
Loading…
Reference in New Issue