Removed spurious parentheses

This commit is contained in:
Sam Lantinga 2025-05-28 13:28:12 -07:00
parent 36936cbf37
commit d2be547642
1 changed files with 1 additions and 1 deletions

View File

@ -3203,7 +3203,7 @@ bool SDL_IsJoystickHoriSteamController(Uint16 vendor_id, Uint16 product_id)
bool SDL_IsJoystickFlydigiController(Uint16 vendor_id, Uint16 product_id)
{
return vendor_id == USB_VENDOR_FLYDIGI && (product_id == USB_PRODUCT_FLYDIGI_GAMEPAD);
return vendor_id == USB_VENDOR_FLYDIGI && product_id == USB_PRODUCT_FLYDIGI_GAMEPAD;
}
bool SDL_IsJoystickSteamDeck(Uint16 vendor_id, Uint16 product_id)