Face Button follows Positional Button layout instead of Labels (#1045)

* Experimenting Button Label

Experimenting a way to add a hint for Button Labels. It should attempt to fix the Nintendo Layout issue when using a Nintendo Switch controller

* added description for Button Labels

* slightly reworded the description

* spaced out the initiation hints
This commit is contained in:
Al. Lopez 2025-03-28 12:13:32 -04:00 committed by GitHub
parent 53596b8e5c
commit acf260af79
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -310,6 +310,8 @@ void hid::Init()
SDL_SetHint(SDL_HINT_JOYSTICK_HIDAPI_PS5_RUMBLE, "1");
SDL_SetHint(SDL_HINT_JOYSTICK_HIDAPI_WII, "1");
SDL_SetHint(SDL_HINT_XINPUT_ENABLED, "1");
SDL_SetHint(SDL_HINT_GAMECONTROLLER_USE_BUTTON_LABELS, "0"); // Uses Button Labels. This hint is disabled for Nintendo Controllers.
SDL_InitSubSystem(SDL_INIT_EVENTS);
SDL_AddEventWatch(HID_OnSDLEvent, nullptr);