mirror of
https://github.com/cemu-project/DS4Windows.git
synced 2024-11-22 17:29:18 +01:00
Raise L2Sens and R2Sens. Change default of Flush HID to false.
With some of the more recent changes, having Flush HID enabled results in increased input lag.
This commit is contained in:
parent
1f42e17996
commit
4d5b8ccb96
@ -505,7 +505,7 @@ namespace DS4Windows
|
||||
//fifth value used to for options, not fifth controller
|
||||
public int[] buttonMouseSensitivity = { 25, 25, 25, 25, 25 };
|
||||
|
||||
public bool[] flushHIDQueue = { true, true, true, true, true };
|
||||
public bool[] flushHIDQueue = { false, false, false, false, false };
|
||||
public int[] idleDisconnectTimeout = { 0, 0, 0, 0, 0 };
|
||||
public Boolean[] touchpadJitterCompensation = { true, true, true, true, true };
|
||||
public Boolean[] lowerRCOn = { false, false, false, false, false };
|
||||
@ -1402,9 +1402,9 @@ namespace DS4Windows
|
||||
LSSens[device] = 1;
|
||||
if (!double.TryParse(s[1], out RSSens[device]) || RSSens[device] < .5f)
|
||||
RSSens[device] = 1;
|
||||
if (!double.TryParse(s[2], out l2Sens[device]) || l2Sens[device] < .5f)
|
||||
if (!double.TryParse(s[2], out l2Sens[device]) || l2Sens[device] < .1f)
|
||||
l2Sens[device] = 1;
|
||||
if (!double.TryParse(s[3], out r2Sens[device]) || r2Sens[device] < .5f)
|
||||
if (!double.TryParse(s[3], out r2Sens[device]) || r2Sens[device] < .1f)
|
||||
r2Sens[device] = 1;
|
||||
if (!double.TryParse(s[4], out SXSens[device]) || SXSens[device] < .5f)
|
||||
SXSens[device] = 1;
|
||||
|
340
DS4Windows/DS4Forms/Options.Designer.cs
generated
340
DS4Windows/DS4Forms/Options.Designer.cs
generated
File diff suppressed because it is too large
Load Diff
@ -387,7 +387,7 @@ namespace DS4Windows
|
||||
cBDoubleTap.Checked = false;
|
||||
cBTouchpadJitterCompensation.Checked = true;
|
||||
cBlowerRCOn.Checked = false;
|
||||
cBFlushHIDQueue.Checked = true;
|
||||
cBFlushHIDQueue.Checked = false;
|
||||
nUDIdleDisconnect.Value = 5;
|
||||
cBIdleDisconnect.Checked = true;
|
||||
numUDMouseSens.Value = 25;
|
||||
|
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue
Block a user