mirror of https://github.com/snes9xgit/snes9x.git
Mac: Report button presses for all 8 players, not just the first 2
This commit is contained in:
parent
70b3345476
commit
e7c47ef25d
|
@ -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]);
|
||||||
|
|
Loading…
Reference in New Issue