Merge pull request #4894 from lioncash/private

Cursor: Make m_z private
This commit is contained in:
JosJuice 2017-02-11 09:26:30 +01:00 committed by GitHub
commit e568d57022
1 changed files with 1 additions and 2 deletions

View File

@ -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