mirror of https://github.com/PCSX2/pcsx2.git
USB: Slightly decrease strength of FF Test
Right now it can be a bit too strong
This commit is contained in:
parent
d65c4c1892
commit
a1f213cfd0
|
@ -1043,11 +1043,11 @@ namespace usb_pad
|
|||
// Gain value may have changed, so update it for the constant force effect
|
||||
UpdateFFBSettings(port, dev);
|
||||
|
||||
SetConstantForce(port, DI_FFNOMINALMAX / 2);
|
||||
SetConstantForce(port, DI_FFNOMINALMAX / 3);
|
||||
Sleep(500);
|
||||
SetConstantForce(port, -DI_FFNOMINALMAX / 2);
|
||||
SetConstantForce(port, -DI_FFNOMINALMAX / 3);
|
||||
Sleep(1000);
|
||||
SetConstantForce(port, DI_FFNOMINALMAX / 2);
|
||||
SetConstantForce(port, DI_FFNOMINALMAX / 3);
|
||||
Sleep(500);
|
||||
SetConstantForce(port, 0);
|
||||
|
||||
|
|
Loading…
Reference in New Issue