[NES] add alpha bits to video provider

This commit is contained in:
zeromus 2011-03-17 04:21:40 +00:00
parent 599675178b
commit 3ceb4ea890
1 changed files with 1 additions and 1 deletions

View File

@ -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;