mirror of
https://github.com/RPCS3/rpcs3.git
synced 2024-11-22 10:42:36 +01:00
dualsense: fix switched motors
The left one seems to be the large motor
This commit is contained in:
parent
a9b8a50c31
commit
7795f5207f
@ -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)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user