diff --git a/port/src/input.c b/port/src/input.c index a4b14d0e5..96438e3f6 100644 --- a/port/src/input.c +++ b/port/src/input.c @@ -838,6 +838,10 @@ void inputRumble(s32 idx, f32 strength, f32 time) return; } + if (padsCfg[idx].rumbleScale <= 0.f) { + return; + } + if (padsCfg[idx].rumbleOn) { strength *= padsCfg[idx].rumbleScale; if (strength <= 0.f) {