diff --git a/BizHawk.Emulation.Cores/Computers/Commodore64/MOS/Cia.Port.cs b/BizHawk.Emulation.Cores/Computers/Commodore64/MOS/Cia.Port.cs index 1e56d421d4..32cfba5d9a 100644 --- a/BizHawk.Emulation.Cores/Computers/Commodore64/MOS/Cia.Port.cs +++ b/BizHawk.Emulation.Cores/Computers/Commodore64/MOS/Cia.Port.cs @@ -124,7 +124,7 @@ namespace BizHawk.Emulation.Cores.Computers.Commodore64.MOS _ret = ~ddrb & 0xFF; _tst = (pra | ~ddra) & GetJoystick2(); _ret &= GetKeyboardRows(_tst); - return (_ret | (prb & ddrb)) & (GetJoystick1() | (~pra & 0x1F)); + return (_ret | (prb & ddrb)) & GetJoystick1(); } }