Input/DS4: use hid_write instead of hid_write_control

Apparently this was only needed for Windows 7
This commit is contained in:
Megamouse 2024-09-26 23:17:15 +02:00
parent 739c4bcfc8
commit 4fd5ebe454
2 changed files with 2 additions and 2 deletions

@ -1 +1 @@
Subproject commit 8b43a97a9330f8b0035439ce9e255e4be202deca
Subproject commit 6bfdcf7368169efe1b745cd4468d45cda05ef8de

View file

@ -678,7 +678,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{};