From e4bdc8849466e8a30bfa069570e58e99d76154ea Mon Sep 17 00:00:00 2001 From: Lioncash Date: Fri, 10 Feb 2017 23:57:48 -0500 Subject: [PATCH] Cursor: Make m_z private This isn't used directly anywhere (and really shouldn't be public anyways). --- Source/Core/InputCommon/ControllerEmu/ControlGroup/Cursor.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Source/Core/InputCommon/ControllerEmu/ControlGroup/Cursor.h b/Source/Core/InputCommon/ControllerEmu/ControlGroup/Cursor.h index 3520d95d13..a86934aaa5 100644 --- a/Source/Core/InputCommon/ControllerEmu/ControlGroup/Cursor.h +++ b/Source/Core/InputCommon/ControllerEmu/ControlGroup/Cursor.h @@ -16,8 +16,6 @@ public: void GetState(ControlState* x, ControlState* y, ControlState* z, bool adjusted = false); - ControlState m_z = 0.0; - private: // This is used to reduce the cursor speed for relative input // to something that makes sense with the default range. @@ -25,5 +23,6 @@ private: ControlState m_x = 0.0; ControlState m_y = 0.0; + ControlState m_z = 0.0; }; } // namespace ControllerEmu