mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-04-21 03:55:32 +00:00
dualsense: fix switched motors
The left one seems to be the large motor
This commit is contained in:
parent
a9b8a50c31
commit
7795f5207f
1 changed files with 2 additions and 2 deletions
|
@ -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…
Add table
Reference in a new issue