From 1b218f66c8676194f9ac71dad3baeb0b4cd72056 Mon Sep 17 00:00:00 2001 From: Souryo Date: Wed, 30 Dec 2015 13:51:08 -0500 Subject: [PATCH] Color emphasis bits were not working (checked in debug code by mistake) --- Core/VideoDecoder.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/Core/VideoDecoder.cpp b/Core/VideoDecoder.cpp index a4b18d7d..46987806 100644 --- a/Core/VideoDecoder.cpp +++ b/Core/VideoDecoder.cpp @@ -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.