Skip to content

Commit

Permalink
Input/DS4: use hid_write instead of hid_write_control
Browse files Browse the repository at this point in the history
It's possible that this was only needed for Windows 7
  • Loading branch information
Megamouse committed Oct 6, 2024
1 parent 0a57c45 commit 1a9a973
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rpcs3/Input/ds4_pad_handler.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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{};
Expand Down

0 comments on commit 1a9a973

Please sign in to comment.