From 51ad284fef6fb83af196ef8bdf32d0310bdb1714 Mon Sep 17 00:00:00 2001 From: James R Date: Thu, 11 Jan 2024 16:48:22 -0800 Subject: [PATCH] Profiles: fix incorrect rumble setting for new profiles --- src/k_profiles.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/k_profiles.c b/src/k_profiles.c index 2aa89d349..a65da05cc 100644 --- a/src/k_profiles.c +++ b/src/k_profiles.c @@ -73,6 +73,7 @@ profile_t* PR_MakeProfile( new->kickstartaccel = false; new->autoroulette = false; new->litesteer = true; + new->rumble = true; // Copy from gamecontrol directly as we'll be setting controls up directly in the profile. memcpy(new->controls, controlarray, sizeof(new->controls));