diff --git a/DS4Windows/DS4Forms/Options.cs b/DS4Windows/DS4Forms/Options.cs index 43eea1a..85b7978 100644 --- a/DS4Windows/DS4Forms/Options.cs +++ b/DS4Windows/DS4Forms/Options.cs @@ -1578,6 +1578,7 @@ namespace DS4Windows.Forms uint tempInvert = 0; if (gyroMouseStickInvertXCk.Checked) tempInvert |= 1 << 0; if (gyroMouseStickInvertYCk.Checked) tempInvert |= 1 << 1; + GyroMouseStickInf[device].inverted = tempInvert; } private void Show_ControlsBtn(object sender, EventArgs e) @@ -3675,6 +3676,7 @@ namespace DS4Windows.Forms uint value = 0; if (gyroMouseStickInvertXCk.Checked) value |= 1 << 0; if (gyroMouseStickInvertYCk.Checked) value |= 1 << 1; + GyroMouseStickInf[device].inverted = value; } }