Mac: Report button presses for all 8 players, not just the first 2

This commit is contained in:
Michael Buckley 2020-01-15 20:10:10 -08:00
parent 70b3345476
commit e7c47ef25d
1 changed files with 4 additions and 2 deletions

View File

@ -2419,8 +2419,10 @@ static void ProcessInput (void)
} }
} }
ControlPadFlagsToS9xReportButtons(0, controlPad[0]); for (int i = 0; i < MAC_MAX_PLAYERS; ++i)
ControlPadFlagsToS9xReportButtons(1, controlPad[1]); {
ControlPadFlagsToS9xReportButtons(i, controlPad[i]);
}
if (macControllerOption == SNES_JUSTIFIER_2) if (macControllerOption == SNES_JUSTIFIER_2)
ControlPadFlagsToS9xPseudoPointer(controlPad[1]); ControlPadFlagsToS9xPseudoPointer(controlPad[1]);