mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-12-16 04:09:39 +00:00
WiimoteReal/IOhidapi: Remove accidentally included HID Profile byte from write test.
This commit is contained in:
parent
70f9ae2432
commit
6c91e30a0d
@ -27,7 +27,7 @@ static bool IsDeviceUsable(const std::string& device_path)
|
|||||||
// Some third-party adapters (DolphinBar) always expose all four Wii Remotes as HIDs
|
// Some third-party adapters (DolphinBar) always expose all four Wii Remotes as HIDs
|
||||||
// even when they are not connected, which causes an endless error loop when we try to use them.
|
// even when they are not connected, which causes an endless error loop when we try to use them.
|
||||||
// Try to write a report to the device to see if this Wii Remote is really usable.
|
// Try to write a report to the device to see if this Wii Remote is really usable.
|
||||||
static const u8 report[] = {WR_SET_REPORT | BT_OUTPUT, u8(OutputReportID::RequestStatus), 0};
|
static const u8 report[] = {u8(OutputReportID::RequestStatus), 0};
|
||||||
const int result = hid_write(handle, report, sizeof(report));
|
const int result = hid_write(handle, report, sizeof(report));
|
||||||
// The DolphinBar uses EPIPE to signal the absence of a Wii Remote connected to this HID.
|
// The DolphinBar uses EPIPE to signal the absence of a Wii Remote connected to this HID.
|
||||||
if (result == -1 && errno != EPIPE)
|
if (result == -1 && errno != EPIPE)
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user