Color emphasis bits were not working (checked in debug code by mistake)

This commit is contained in:
Souryo 2015-12-30 13:51:08 -05:00
parent a98ce1c518
commit 1b218f66c8

View file

@ -47,7 +47,6 @@ VideoDecoder::~VideoDecoder()
uint32_t VideoDecoder::ProcessIntensifyBits(uint16_t ppuPixel)
{
return PPU_PALETTE_ARGB[ppuPixel & 0x3F];
uint32_t pixelOutput = PPU_PALETTE_ARGB[ppuPixel & 0x3F];
//Incorrect emphasis bit implementation, but will do for now.