mirror of
https://github.com/cemu-project/DS4Windows.git
synced 2024-11-26 19:14:20 +01:00
Change six axis dead zone calculation to be a proper dead zone
This commit is contained in:
parent
c988449129
commit
3d387e5fde
@ -917,8 +917,8 @@ namespace DS4Windows
|
|||||||
bool sOff = tempBool = isUsingSAforMouse(device);
|
bool sOff = tempBool = isUsingSAforMouse(device);
|
||||||
if (sOff == false)
|
if (sOff == false)
|
||||||
{
|
{
|
||||||
int SXD = (int)(10d * getSXDeadzone(device));
|
int SXD = (int)(128d * getSXDeadzone(device));
|
||||||
int SZD = (int)(10d * getSZDeadzone(device));
|
int SZD = (int)(128d * getSZDeadzone(device));
|
||||||
double SXMax = getSXMaxzone(device);
|
double SXMax = getSXMaxzone(device);
|
||||||
double SZMax = getSZMaxzone(device);
|
double SZMax = getSZMaxzone(device);
|
||||||
double sxAntiDead = getSXAntiDeadzone(device);
|
double sxAntiDead = getSXAntiDeadzone(device);
|
||||||
|
Loading…
Reference in New Issue
Block a user