From e1efb2bb5b12a761934a32340afb0fcef307ecd8 Mon Sep 17 00:00:00 2001 From: Travis Nickles Date: Thu, 8 Jun 2017 14:38:46 -0700 Subject: [PATCH] Do not need temp profile index for some properties --- DS4Windows/DS4Control/ControlService.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/DS4Windows/DS4Control/ControlService.cs b/DS4Windows/DS4Control/ControlService.cs index 7fb9412..4738b80 100644 --- a/DS4Windows/DS4Control/ControlService.cs +++ b/DS4Windows/DS4Control/ControlService.cs @@ -644,8 +644,8 @@ namespace DS4Windows public bool[] lag = { false, false, false, false }; public bool[] inWarnMonitor = { false, false, false, false }; - private byte[] currentBattery = { 0, 0, 0, 0, 0 }; - private bool[] charging = { false, false, false, false, false }; + private byte[] currentBattery = { 0, 0, 0, 0 }; + private bool[] charging = { false, false, false, false }; // Called every time a new input report has arrived protected virtual void On_Report(object sender, EventArgs e)