From 81975cc2d0719e424fbb8e313d84dc1e6323e5c1 Mon Sep 17 00:00:00 2001 From: Sam Lantinga Date: Wed, 28 Dec 2022 12:51:36 -0800 Subject: [PATCH] Fixed getting the VID/PID of a virtual joystick (cherry picked from commit e40a96155fc488feaeeeb79f947eb43399faa481) (cherry picked from commit 29a4c5ebc2523f2d9cde1601405dbdafb847c559) --- src/joystick/SDL_joystick.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/joystick/SDL_joystick.c b/src/joystick/SDL_joystick.c index 39f971bd3..e48dad8c7 100644 --- a/src/joystick/SDL_joystick.c +++ b/src/joystick/SDL_joystick.c @@ -1811,7 +1811,7 @@ void SDL_GetJoystickGUIDInfo(SDL_JoystickGUID guid, Uint16 *vendor, Uint16 *prod Uint16 *guid16 = (Uint16 *)guid.data; Uint16 bus = SDL_SwapLE16(guid16[0]); - if (bus < ' ' && guid16[3] == 0x0000 && guid16[5] == 0x0000) { + if ((bus < ' ' || bus == SDL_HARDWARE_BUS_VIRTUAL) && guid16[3] == 0x0000 && guid16[5] == 0x0000) { /* This GUID fits the standard form: * 16-bit bus * 16-bit CRC16 of the joystick name (can be zero)