early-access version 1898
This commit is contained in:
parent
83d2501797
commit
9b74595473
2 changed files with 3 additions and 3 deletions
|
@ -1,7 +1,7 @@
|
||||||
yuzu emulator early access
|
yuzu emulator early access
|
||||||
=============
|
=============
|
||||||
|
|
||||||
This is the source code for early-access 1896.
|
This is the source code for early-access 1898.
|
||||||
|
|
||||||
## Legal Notice
|
## Legal Notice
|
||||||
|
|
||||||
|
|
|
@ -165,10 +165,10 @@ public:
|
||||||
|
|
||||||
if (sdl_controller) {
|
if (sdl_controller) {
|
||||||
return SDL_GameControllerRumble(sdl_controller.get(), amp_low, amp_high,
|
return SDL_GameControllerRumble(sdl_controller.get(), amp_low, amp_high,
|
||||||
rumble_max_duration_ms) == 0;
|
rumble_max_duration_ms) != -1;
|
||||||
} else if (sdl_joystick) {
|
} else if (sdl_joystick) {
|
||||||
return SDL_JoystickRumble(sdl_joystick.get(), amp_low, amp_high,
|
return SDL_JoystickRumble(sdl_joystick.get(), amp_low, amp_high,
|
||||||
rumble_max_duration_ms) == 0;
|
rumble_max_duration_ms) != -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
return false;
|
return false;
|
||||||
|
|
Loading…
Reference in a new issue