mirror of
https://github.com/Relintai/sdl2_frt.git
synced 2025-01-12 05:41:10 +01:00
Make XInput joystick names match the numbers on the device.
(And how the Haptic code already names them.)
This commit is contained in:
parent
7949989884
commit
aa65211486
@ -745,7 +745,7 @@ AddXInputDevice(const Uint8 userid, JoyStick_DeviceData **pContext)
|
||||
}
|
||||
SDL_zerop(pNewJoystick);
|
||||
|
||||
SDL_snprintf(name, sizeof (name), "XInput Controller #%d", (int) userid);
|
||||
SDL_snprintf(name, sizeof (name), "XInput Controller #%u", ((unsigned int) userid) + 1);
|
||||
pNewJoystick->joystickname = SDL_strdup(name);
|
||||
if (!pNewJoystick->joystickname) {
|
||||
SDL_free(pNewJoystick);
|
||||
|
Loading…
Reference in New Issue
Block a user