Cursor: Make m_z private

This isn't used directly anywhere (and really shouldn't be public
anyways).
This commit is contained in:
Lioncash 2017-02-10 23:57:48 -05:00
parent 2cad67952d
commit e4bdc88494
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