From 4bbae293a879164d93d66580219f168540e9d251 Mon Sep 17 00:00:00 2001 From: bslenul <33353403+bslenul@users.noreply.github.com> Date: Sun, 5 Jun 2022 11:41:55 +0200 Subject: [PATCH] Rumble should only work with 'dualshock' device type --- libpcsxcore/plugins.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/libpcsxcore/plugins.c b/libpcsxcore/plugins.c index 85380647..87b574d4 100644 --- a/libpcsxcore/plugins.c +++ b/libpcsxcore/plugins.c @@ -793,8 +793,7 @@ unsigned char _PADpoll(int port, unsigned char value) { //mem the vibration value for Large motor; pad[port].Vib[1] = value; - if (in_type[port] == PSE_PAD_TYPE_STANDARD && - in_type[port] == PSE_PAD_TYPE_NEGCON) + if (in_type[port] != PSE_PAD_TYPE_ANALOGPAD) break; //vibration -- 2.39.5