From 510143678fdc7a47eaefcb1ece047c01a7d52ee7 Mon Sep 17 00:00:00 2001 From: Yaya-Cout Date: Tue, 2 Apr 2024 21:08:28 +0200 Subject: [PATCH] [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) --- ion/src/simulator/shared/haptics.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ion/src/simulator/shared/haptics.cpp b/ion/src/simulator/shared/haptics.cpp index 3cd26fe66..061335f84 100644 --- a/ion/src/simulator/shared/haptics.cpp +++ b/ion/src/simulator/shared/haptics.cpp @@ -26,7 +26,7 @@ void shutdown() { void rumble() { if (sSDLHaptic && isEnabled()) { - SDL_HapticRumblePlay(sSDLHaptic, 1.0, 40); + SDL_HapticRumblePlay(sSDLHaptic, 1.0, 1); } }