From a4b540d62c94feb585e7c04b8b4ed23886802368 Mon Sep 17 00:00:00 2001 From: Travis Nickles Date: Thu, 22 Jun 2017 22:30:22 -0700 Subject: [PATCH] Change variable name --- DS4Windows/DS4Library/DS4Device.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/DS4Windows/DS4Library/DS4Device.cs b/DS4Windows/DS4Library/DS4Device.cs index 87dc9d7..b0dc673 100644 --- a/DS4Windows/DS4Library/DS4Device.cs +++ b/DS4Windows/DS4Library/DS4Device.cs @@ -876,8 +876,8 @@ namespace DS4Windows } } - bool ds4ActiveFrame = cState.FrameCounter == pState.FrameCounter; - if (!ds4ActiveFrame) + bool ds4InactiveFrame = cState.FrameCounter == pState.FrameCounter; + if (!ds4InactiveFrame) { isRemoved = false; }