Fixed whitespace

This commit is contained in:
Sam Lantinga
2020-12-03 18:17:01 -08:00
parent f487d63a6b
commit 59f28b7f4b
5 changed files with 16 additions and 16 deletions

View File

@@ -652,14 +652,14 @@ HIDAPI_DriverPS4_HandleStatePacket(SDL_Joystick *joystick, hid_device *dev, SDL_
SDL_PrivateJoystickButton(joystick, SDL_CONTROLLER_BUTTON_RIGHTSTICK, (data & 0x80) ? SDL_PRESSED : SDL_RELEASED);
}
/* Some fightsticks, ex: Victrix FS Pro will only this these digital trigger bits and not the analog values so this needs to run whenever the
trigger is evaluated
*/
if ((packet->rgucButtonsHatAndCounter[1] & 0x0C) != 0) {
Uint8 data = packet->rgucButtonsHatAndCounter[1];
packet->ucTriggerLeft = (data & 0x04) && packet->ucTriggerLeft == 0 ? 255 : packet->ucTriggerLeft;
packet->ucTriggerRight = (data & 0x08) && packet->ucTriggerRight == 0 ? 255 : packet->ucTriggerRight;
}
/* Some fightsticks, ex: Victrix FS Pro will only this these digital trigger bits and not the analog values so this needs to run whenever the
trigger is evaluated
*/
if ((packet->rgucButtonsHatAndCounter[1] & 0x0C) != 0) {
Uint8 data = packet->rgucButtonsHatAndCounter[1];
packet->ucTriggerLeft = (data & 0x04) && packet->ucTriggerLeft == 0 ? 255 : packet->ucTriggerLeft;
packet->ucTriggerRight = (data & 0x08) && packet->ucTriggerRight == 0 ? 255 : packet->ucTriggerRight;
}
if (ctx->last_state.rgucButtonsHatAndCounter[2] != packet->rgucButtonsHatAndCounter[2]) {
Uint8 data = (packet->rgucButtonsHatAndCounter[2] & 0x03);

View File

@@ -479,9 +479,9 @@ static int
IOS_JoystickInit(void)
{
#if defined(__MACOSX__)
if (!is_macos11()) {
return 0;
}
if (!is_macos11()) {
return 0;
}
#endif
@autoreleasepool {

View File

@@ -34,7 +34,7 @@ typedef struct joystick_hwdata
SDL_bool remote;
GCController __unsafe_unretained *controller;
void *rumble;
void *rumble;
SDL_bool uses_pause_handler;
int num_pause_presses;
Uint32 pause_button_down_time;

View File

@@ -625,7 +625,7 @@ LINUX_JoystickDetect(void)
}
else
#endif
{
{
LINUX_FallbackJoystickDetect();
}