mirror of
https://github.com/MaSzyna-EU07/maszyna.git
synced 2026-03-22 15:05:03 +01:00
dangling pointer crash semi-fix, minor bug fixes, minor code correctness enhancements
This commit is contained in:
@@ -69,14 +69,14 @@ private:
|
||||
|
||||
// members
|
||||
commandsetup_sequence m_commands;
|
||||
user_command m_command; // last, if any, issued command
|
||||
user_command m_command { user_command::none }; // last, if any, issued command
|
||||
usercommand_map m_bindings;
|
||||
command_relay m_relay;
|
||||
bool m_shift{ false };
|
||||
bool m_ctrl{ false };
|
||||
bool m_shift { false };
|
||||
bool m_ctrl { false };
|
||||
bindings_cache m_bindingscache;
|
||||
glm::vec2 m_movementhorizontal;
|
||||
float m_movementvertical;
|
||||
glm::vec2 m_movementhorizontal { 0.f };
|
||||
float m_movementvertical { 0.f };
|
||||
std::array<char, GLFW_KEY_LAST + 1> m_keys;
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user