diff --git a/rpcs3/Input/ds3_pad_handler.cpp b/rpcs3/Input/ds3_pad_handler.cpp index 14d2bab5a9..835f691dad 100644 --- a/rpcs3/Input/ds3_pad_handler.cpp +++ b/rpcs3/Input/ds3_pad_handler.cpp @@ -265,8 +265,6 @@ void ds3_pad_handler::check_add_device(hid_device* hidDevice, std::string_view p std::string serial; - // Uses libusb for windows as hidapi will never work with UsbHid driver for the ds3 and it won't work with WinUsb either(windows hid api needs the UsbHid in the driver stack as far as I can tell) - // For other os use hidapi and hope for the best! #ifdef _WIN32 std::array buf{}; buf[0] = 0xF2; diff --git a/rpcs3/Input/dualsense_pad_handler.cpp b/rpcs3/Input/dualsense_pad_handler.cpp index 68bb2d50c0..08193cde42 100644 --- a/rpcs3/Input/dualsense_pad_handler.cpp +++ b/rpcs3/Input/dualsense_pad_handler.cpp @@ -927,7 +927,7 @@ int dualsense_pad_handler::send_output_report(DualSenseDevice* device) const cfg_pad* config = device->config; if (config == nullptr) - return -2; // hid_write and hid_write_control return -1 on error + return -2; // hid_write returns -1 on error output_report_common common{};