1
0
mirror of https://github.com/RPCS3/rpcs3.git synced 2024-11-22 02:32:36 +01:00

Input/DS4: use hid_write instead of hid_write_control

It's possible that this was only needed for Windows 7
This commit is contained in:
Megamouse 2024-09-26 23:17:15 +02:00
parent 29901d65ed
commit f2686bba07

View File

@ -676,7 +676,7 @@ int ds4_pad_handler::send_output_report(DS4Device* device)
write_to_ptr(output.crc32, crcCalc);
return hid_write_control(device->hidDevice, &output.report_id, sizeof(ds4_output_report_bt));
return hid_write(device->hidDevice, &output.report_id, sizeof(ds4_output_report_bt));
}
ds4_output_report_usb output{};