Browse Source

input/sdl_impl: fix rumble support on DualSense. (#6683)

- value return can be different 0, is not error is normal, error is only -1.
pull/15/merge
Nicolas Jallamion 4 years ago
committed by GitHub
parent
commit
6573ff64b4
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      src/input_common/sdl/sdl_impl.cpp

4
src/input_common/sdl/sdl_impl.cpp

@ -130,10 +130,10 @@ public:
if (sdl_controller) {
return SDL_GameControllerRumble(sdl_controller.get(), amp_low, amp_high,
rumble_max_duration_ms) == 0;
rumble_max_duration_ms) != -1;
} else if (sdl_joystick) {
return SDL_JoystickRumble(sdl_joystick.get(), amp_low, amp_high,
rumble_max_duration_ms) == 0;
rumble_max_duration_ms) != -1;
}
return false;

Loading…
Cancel
Save