mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-10 16:19:28 +01:00
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);
|
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…
x
Reference in New Issue
Block a user