From 6dd3ec7fdac72470d135c9d5209df7fb7c6408dd Mon Sep 17 00:00:00 2001 From: AL2009man <67606569+AL2009man@users.noreply.github.com> Date: Wed, 8 Oct 2025 14:15:58 -0400 Subject: [PATCH] Temporarily disables RawInput driver Due to a Windows Update regression: RawInput driver has a issue related to Xbox Controllers' trigger input only being detected. For safety reasons, `useRawInput` will be disabled by default until the bug is fixed on Microsoft's end. for those who still needs it: you can head over to `pd.ini` and revert `useRawInput` back to `1` --- port/src/input.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/port/src/input.c b/port/src/input.c index ebf0c4667b..20137358c1 100644 --- a/port/src/input.c +++ b/port/src/input.c @@ -75,7 +75,7 @@ static s32 connectedMask = 0; static s32 numJoysticks = 0; static s32 useHIDAPI = 1; -static s32 useRawInput = 1; +static s32 useRawInput = 0; static s32 mouseEnabled = 1; static s32 mouseX, mouseY;