From 2c1d42ae1250317e006811629c5e5f2513841b51 Mon Sep 17 00:00:00 2001 From: James R Date: Sat, 30 Dec 2023 00:52:17 -0800 Subject: [PATCH] PR_ApplyProfile_Settings: fix rumble not being reset when switching profiles --- src/k_profiles.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/k_profiles.c b/src/k_profiles.c index cd2491731..8dda612f4 100644 --- a/src/k_profiles.c +++ b/src/k_profiles.c @@ -493,6 +493,7 @@ static void PR_ApplyProfile_Settings(profile_t *p, UINT8 playernum) CV_StealthSetValue(&cv_kickstartaccel[playernum], p->kickstartaccel); CV_StealthSetValue(&cv_autoroulette[playernum], p->autoroulette); CV_StealthSetValue(&cv_litesteer[playernum], p->litesteer); + CV_StealthSetValue(&cv_rumble[playernum], p->rumble); // set controls... memcpy(&gamecontrol[playernum], p->controls, sizeof(gamecontroldefault));