Merge pull request #4894 from lioncash/private
Cursor: Make m_z private
This commit is contained in:
commit
e568d57022
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue