Fixed Joy-Con gyro axes in mini-gamepad mode

main
Sam Lantinga 2022-08-08 17:19:12 -07:00
parent 5aa438e80a
commit d58bec72a0
1 changed files with 16 additions and 0 deletions

View File

@ -1747,6 +1747,22 @@ static void SendSensorUpdate(SDL_Joystick *joystick, SDL_DriverSwitch_Context *c
data[1] = -data[1];
}
if (ctx->m_eControllerType == k_eSwitchDeviceInfoControllerType_JoyConLeft &&
!ctx->device->parent) {
/* Mini-gamepad mode, swap some axes around */
float tmp = data[2];
data[2] = -data[0];
data[0] = tmp;
}
if (ctx->m_eControllerType == k_eSwitchDeviceInfoControllerType_JoyConRight &&
!ctx->device->parent) {
/* Mini-gamepad mode, swap some axes around */
float tmp = data[2];
data[2] = data[0];
data[0] = -tmp;
}
SDL_PrivateJoystickSensor(joystick, type, data, 3);
}