SDL: Fixed initial rumble on the 8BitDo 64 Bluetooth Controller

From f211a3bb6983c967b68906b7c5ed332e3e8fd59f Mon Sep 17 00:00:00 2001
From: Sam Lantinga <[EMAIL REDACTED]>
Date: Fri, 7 Nov 2025 09:31:45 -0800
Subject: [PATCH] Fixed initial rumble on the 8BitDo 64 Bluetooth Controller

---
 src/joystick/hidapi/SDL_hidapi_switch.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/joystick/hidapi/SDL_hidapi_switch.c b/src/joystick/hidapi/SDL_hidapi_switch.c
index 06ec7db061947..44158159b49a4 100644
--- a/src/joystick/hidapi/SDL_hidapi_switch.c
+++ b/src/joystick/hidapi/SDL_hidapi_switch.c
@@ -573,8 +573,8 @@ static Uint16 EncodeRumbleLowAmplitude(Uint16 amplitude)
 static void SetNeutralRumble(SwitchRumbleData_t *pRumble)
 {
     pRumble->rgucData[0] = 0x00;
-    pRumble->rgucData[1] = 0x01;
-    pRumble->rgucData[2] = 0x40;
+    pRumble->rgucData[1] = 0x00;
+    pRumble->rgucData[2] = 0x01;
     pRumble->rgucData[3] = 0x40;
 }