From fa1d8f003d40ba27fa85293128e06f5481be23b8 Mon Sep 17 00:00:00 2001 From: Travis Nickles Date: Tue, 3 Sep 2019 05:53:10 -0500 Subject: [PATCH] Added sixaxis event hooks --- DS4Windows/DS4Forms/Options.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/DS4Windows/DS4Forms/Options.cs b/DS4Windows/DS4Forms/Options.cs index 8587ec3..cf4c311 100644 --- a/DS4Windows/DS4Forms/Options.cs +++ b/DS4Windows/DS4Forms/Options.cs @@ -391,10 +391,10 @@ namespace DS4Windows.Forms gyroMouseDzNUD.ValueChanged += gyroMouseDzNUD_ValueChanged; toggleGyroMCb.CheckedChanged += toggleGyroMCb_Click; // Gyro Controls - //bnGyroZN.Click += - //bnGyroZP.Click += - //bnGyroXP.Click += - //bnGyroXN.Click += + bnGyroZN.Click += Show_ControlsBn; + bnGyroZP.Click += Show_ControlsBn; + bnGyroXP.Click += Show_ControlsBn; + bnGyroXN.Click += Show_ControlsBn; cBSteeringWheelEmulationAxis.SelectedIndexChanged += cBSteeringWheelEmulationAxis_SelectedIndexChanged; cBSteeringWheelEmulationRange.SelectedIndexChanged += cBSteeringWheelEmulationRange_SelectedIndexChanged; btnSteeringWheelEmulationCalibrate.Click += btnSteeringWheelEmulationCalibrate_Click;