Cursor: Make m_z private
This isn't used directly anywhere (and really shouldn't be public anyways).
This commit is contained in:
parent
2cad67952d
commit
e4bdc88494
|
@ -16,8 +16,6 @@ public:
|
||||||
|
|
||||||
void GetState(ControlState* x, ControlState* y, ControlState* z, bool adjusted = false);
|
void GetState(ControlState* x, ControlState* y, ControlState* z, bool adjusted = false);
|
||||||
|
|
||||||
ControlState m_z = 0.0;
|
|
||||||
|
|
||||||
private:
|
private:
|
||||||
// This is used to reduce the cursor speed for relative input
|
// This is used to reduce the cursor speed for relative input
|
||||||
// to something that makes sense with the default range.
|
// to something that makes sense with the default range.
|
||||||
|
@ -25,5 +23,6 @@ private:
|
||||||
|
|
||||||
ControlState m_x = 0.0;
|
ControlState m_x = 0.0;
|
||||||
ControlState m_y = 0.0;
|
ControlState m_y = 0.0;
|
||||||
|
ControlState m_z = 0.0;
|
||||||
};
|
};
|
||||||
} // namespace ControllerEmu
|
} // namespace ControllerEmu
|
||||||
|
|
Loading…
Reference in New Issue