diff --git a/port/src/input.c b/port/src/input.c index 4905fa5ed..2d2ece349 100644 --- a/port/src/input.c +++ b/port/src/input.c @@ -856,6 +856,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) {