mirror of
https://github.com/cemu-project/DS4Windows.git
synced 2024-11-26 11:04:21 +01:00
Correct some variables
This commit is contained in:
parent
f4302a752d
commit
bf774ba6f7
@ -32,9 +32,9 @@ namespace DS4Windows
|
||||
previousAxis = prevAxis;
|
||||
if (previousAxis != null)
|
||||
{
|
||||
deltaX = aX - previousAxis.gyroX;
|
||||
deltaY = aY - previousAxis.gyroY;
|
||||
deltaZ = aZ - previousAxis.gyroZ;
|
||||
deltaX = gyroX - previousAxis.gyroX;
|
||||
deltaY = gyroY - previousAxis.gyroY;
|
||||
deltaZ = gyroZ - previousAxis.gyroZ;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user