Update Intellivision.IEmulator.cs

P2 controller fix
This commit is contained in:
alyosha-tas 2016-11-11 18:46:31 -05:00 committed by GitHub
parent 25dfe00203
commit d3cfb37a56
1 changed files with 1 additions and 1 deletions

View File

@ -104,7 +104,7 @@ namespace BizHawk.Emulation.Cores.Intellivision
{
if (Controller.IsPressed(IntellivisionController.BoolButtons[i]))
{
result |= HandControllerButtons[i];
result |= HandControllerButtons[i-31];
}
}