mirror of
https://github.com/cemu-project/DS4Windows.git
synced 2024-12-24 23:51:49 +01:00
Added unchecked block around axis scaling
This commit is contained in:
parent
21350227c6
commit
a4002ade3a
@ -656,6 +656,8 @@ namespace DS4Windows
|
|||||||
}
|
}
|
||||||
|
|
||||||
private short AxisScale(Int32 Value, Boolean Flip)
|
private short AxisScale(Int32 Value, Boolean Flip)
|
||||||
|
{
|
||||||
|
unchecked
|
||||||
{
|
{
|
||||||
Value -= 0x80;
|
Value -= 0x80;
|
||||||
|
|
||||||
@ -665,6 +667,7 @@ namespace DS4Windows
|
|||||||
|
|
||||||
return (short)(temp * outputResolution + (-32768));
|
return (short)(temp * outputResolution + (-32768));
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
private void CheckProfileOptions(int ind, DS4Device device, bool startUp=false)
|
private void CheckProfileOptions(int ind, DS4Device device, bool startUp=false)
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user