dualsense: fix switched motors

The left one seems to be the large motor
This commit is contained in:
Megamouse 2021-02-08 23:59:14 +01:00
parent a9b8a50c31
commit 7795f5207f
1 changed files with 2 additions and 2 deletions

View File

@ -913,8 +913,8 @@ int dualsense_pad_handler::send_output_report(const std::shared_ptr<DualSenseDev
output_report_common common{};
common.valid_flag_0 |= 0x01; // Enable haptics
common.valid_flag_0 |= 0x02; // Enable vibration
common.motor_left = device->smallVibrate;
common.motor_right = device->largeVibrate;
common.motor_left = device->largeVibrate;
common.motor_right = device->smallVibrate;
if (device->btCon)
{