mirror of
https://github.com/ndeadly/MissionControl
synced 2024-11-25 13:50:22 +00:00
mc.mitm: try to fix ds3 support for clone controller
This commit is contained in:
parent
9a02bdbbb1
commit
ddf4424d5f
1 changed files with 3 additions and 1 deletions
|
@ -304,6 +304,7 @@ namespace ams::controller {
|
|||
std::memcpy(m_output_report.data, EnablePayload, m_output_report.size);
|
||||
|
||||
R_RETURN(this->SetReport(BtdrvBluetoothHhReportType_Feature, &m_output_report));
|
||||
//R_RETURN(this->WriteDataReport(&m_output_report));
|
||||
}
|
||||
|
||||
Result Dualshock3Controller::PushRumbleLedState() {
|
||||
|
@ -324,7 +325,8 @@ namespace ams::controller {
|
|||
m_output_report.size = sizeof(report.output0x01) + sizeof(report.id);
|
||||
std::memcpy(m_output_report.data, &report, m_output_report.size);
|
||||
|
||||
R_RETURN(this->SetReport(BtdrvBluetoothHhReportType_Output, &m_output_report));
|
||||
//R_RETURN(this->SetReport(BtdrvBluetoothHhReportType_Output, &m_output_report));
|
||||
R_RETURN(this->WriteDataReport(&m_output_report));
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue