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;