mirror of
https://github.com/shadps4-emu/ext-SDL.git
synced 2024-11-27 12:00:35 +00:00
Added support for the Logitech Cordless Precision PS3 controller
This commit is contained in:
parent
4f9c2b3e2e
commit
36c5d5cc65
@ -801,7 +801,7 @@ static SDL_bool HIDAPI_DriverPS3ThirdParty_UpdateDevice(SDL_HIDAPI_Device *devic
|
||||
continue;
|
||||
}
|
||||
|
||||
if (size == 27) {
|
||||
if (size >= 19) {
|
||||
HIDAPI_DriverPS3ThirdParty_HandleStatePacket(joystick, ctx, data, size);
|
||||
} else {
|
||||
#ifdef DEBUG_JOYSTICK
|
||||
|
@ -31,6 +31,7 @@
|
||||
#define USB_VENDOR_GOOGLE 0x18d1
|
||||
#define USB_VENDOR_HORI 0x0f0d
|
||||
#define USB_VENDOR_HYPERKIN 0x2e24
|
||||
#define USB_VENDOR_LOGITECH 0x046d
|
||||
#define USB_VENDOR_MADCATZ 0x0738
|
||||
#define USB_VENDOR_MICROSOFT 0x045e
|
||||
#define USB_VENDOR_NACON 0x146b
|
||||
@ -51,6 +52,7 @@
|
||||
#define SONY_THIRDPARTY_VENDOR(X) \
|
||||
(X == USB_VENDOR_DRAGONRISE || \
|
||||
X == USB_VENDOR_HORI || \
|
||||
X == USB_VENDOR_LOGITECH || \
|
||||
X == USB_VENDOR_MADCATZ || \
|
||||
X == USB_VENDOR_NACON || \
|
||||
X == USB_VENDOR_PDP || \
|
||||
|
Loading…
Reference in New Issue
Block a user