C64: fix controller

This commit is contained in:
alyosha-tas 2018-01-06 18:12:30 -05:00
parent 353fec4f00
commit eaef35b126
1 changed files with 1 additions and 1 deletions

View File

@ -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();
}
}