From a562e40d2c63d1436d26d889ea49dc3c228747d2 Mon Sep 17 00:00:00 2001 From: Sam Lantinga Date: Tue, 2 Sep 2025 09:01:53 -0700 Subject: [PATCH] Revert "Disable rumble for the Ultimate 2 Wireless Controller in dongle mode" This reverts commit 065fdca953c91c4f76d8c7cb8dc824eee3e18c2f. 8BitDo has fixed the rumble issue with dongle firmware update V1.05 --- src/joystick/hidapi/SDL_hidapi_8bitdo.c | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/joystick/hidapi/SDL_hidapi_8bitdo.c b/src/joystick/hidapi/SDL_hidapi_8bitdo.c index 5561819991..95227869da 100644 --- a/src/joystick/hidapi/SDL_hidapi_8bitdo.c +++ b/src/joystick/hidapi/SDL_hidapi_8bitdo.c @@ -179,11 +179,6 @@ static bool HIDAPI_Driver8BitDo_InitDevice(SDL_HIDAPI_Device *device) ctx->sensors_supported = true; ctx->rumble_supported = true; ctx->powerstate_supported = true; - - if (!device->is_bluetooth) { - // The dongle appears to just stop sending reports after intense rumble activity - ctx->rumble_supported = false; - } } break; }