mirror of
https://github.com/ndeadly/MissionControl
synced 2024-11-23 04:43:10 +00:00
btdrv-mitm: use btdrvWriteData to send ds4 report to be consistent with other output reports
This commit is contained in:
parent
59158118e3
commit
d2068b7912
1 changed files with 1 additions and 1 deletions
|
@ -39,7 +39,7 @@ namespace ams::controller {
|
|||
hidReport.size = sizeof(report) - 1;
|
||||
std::memcpy(&hidReport.data, &report.data[1], hidReport.size);
|
||||
|
||||
R_TRY(btdrvSetHidReport(&m_address, HidReportType_OutputReport, &hidReport));
|
||||
R_TRY(btdrvWriteHidData(&m_address, &hidReport));
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue