Temporarily disable GameSir driver

There are some issues that need response from GameSir before this can be enabled by default.
This commit is contained in:
Sam Lantinga
2026-02-04 14:59:30 -08:00
parent ca7788cd9f
commit 273a093032

View File

@@ -110,7 +110,9 @@ static void HIDAPI_DriverGameSir_UnregisterHints(SDL_HintCallback callback, void
static bool HIDAPI_DriverGameSir_IsEnabled(void)
{
return SDL_GetHintBoolean(SDL_HINT_JOYSTICK_HIDAPI_GAMESIR, SDL_GetHintBoolean(SDL_HINT_JOYSTICK_HIDAPI, SDL_HIDAPI_DEFAULT));
// Temporarily disabled by default until response from GameSir
//return SDL_GetHintBoolean(SDL_HINT_JOYSTICK_HIDAPI_GAMESIR, SDL_GetHintBoolean(SDL_HINT_JOYSTICK_HIDAPI, SDL_HIDAPI_DEFAULT));
return SDL_GetHintBoolean(SDL_HINT_JOYSTICK_HIDAPI_GAMESIR, false);
}