From 76f3c0822528c30a61a63377196d2912561d2238 Mon Sep 17 00:00:00 2001 From: saxxonpike Date: Sat, 10 Nov 2012 06:59:58 +0000 Subject: [PATCH] commodore64: multicolor bitmap mode plotter color fix --- BizHawk.Emulation/Computers/Commodore64/VicII.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/BizHawk.Emulation/Computers/Commodore64/VicII.cs b/BizHawk.Emulation/Computers/Commodore64/VicII.cs index 5245b149ba..b924f46568 100644 --- a/BizHawk.Emulation/Computers/Commodore64/VicII.cs +++ b/BizHawk.Emulation/Computers/Commodore64/VicII.cs @@ -946,10 +946,10 @@ namespace BizHawk.Emulation.Computers.Commodore64 { case 1: dataForeground = false; - return characterData & 0xF; + return characterData >> 4; case 2: dataForeground = true; - return characterData >> 4; + return characterData & 0xF; case 3: dataForeground = true; return colorData & 0xF;