Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Swap A/B and X/Y buttons for Xbox One controller to match the face buttons #70

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions source/ios_pad/source/controllers/xbox_one_controller.c
Original file line number Diff line number Diff line change
Expand Up @@ -62,13 +62,13 @@ void controllerData_xbox_one(Controller_t* controller, uint8_t* buf, uint16_t le
if (len >= 17) {
// new format
if (buf[14] & 0x01)
rep->buttons |= WPAD_PRO_BUTTON_B;
if (buf[14] & 0x02)
rep->buttons |= WPAD_PRO_BUTTON_A;
if (buf[14] & 0x02)
rep->buttons |= WPAD_PRO_BUTTON_B;
if (buf[14] & 0x08)
rep->buttons |= WPAD_PRO_BUTTON_Y;
if (buf[14] & 0x10)
rep->buttons |= WPAD_PRO_BUTTON_X;
if (buf[14] & 0x10)
rep->buttons |= WPAD_PRO_BUTTON_Y;
if (buf[14] & 0x40)
rep->buttons |= WPAD_PRO_TRIGGER_L;
if (buf[14] & 0x80)
Expand Down