[ion/simulator] Reduce rumble from 40 ms to 1 ms

Waaaay better on Android, simulator is usable (Look like RetroArch, even if I didn't copy the parameters)
This commit is contained in:
Yaya-Cout
2024-04-02 21:08:28 +02:00
parent 2374fe4cf8
commit 510143678f

View File

@@ -26,7 +26,7 @@ void shutdown() {
void rumble() {
if (sSDLHaptic && isEnabled()) {
SDL_HapticRumblePlay(sSDLHaptic, 1.0, 40);
SDL_HapticRumblePlay(sSDLHaptic, 1.0, 1);
}
}