mirror of
https://github.com/Ryujinx/SDL.git
synced 2025-02-03 16:30:57 +00:00
Added HIDAPI rumble debug info
This commit is contained in:
parent
e2f46ed8ef
commit
d0b87fede6
|
@ -77,6 +77,9 @@ static int SDL_HIDAPI_RumbleThread(void *data)
|
||||||
if (request) {
|
if (request) {
|
||||||
SDL_LockMutex(request->device->dev_lock);
|
SDL_LockMutex(request->device->dev_lock);
|
||||||
if (request->device->dev) {
|
if (request->device->dev) {
|
||||||
|
#ifdef DEBUG_RUMBLE
|
||||||
|
HIDAPI_DumpPacket("Rumble packet: size = %d", request->data, request->size);
|
||||||
|
#endif
|
||||||
hid_write(request->device->dev, request->data, request->size);
|
hid_write(request->device->dev, request->data, request->size);
|
||||||
}
|
}
|
||||||
SDL_UnlockMutex(request->device->dev_lock);
|
SDL_UnlockMutex(request->device->dev_lock);
|
||||||
|
|
Loading…
Reference in a new issue