mirror of
https://github.com/OrcaSlicer/OrcaSlicer.git
synced 2026-05-19 19:33:47 +00:00
Fixed uninitialized "Connected" flag of the Mouse3DController
after refactoring.
This commit is contained in:
@@ -139,7 +139,7 @@ class Mouse3DController
|
|||||||
std::map<std::string, Params> m_params_by_device;
|
std::map<std::string, Params> m_params_by_device;
|
||||||
|
|
||||||
mutable State m_state;
|
mutable State m_state;
|
||||||
std::atomic<bool> m_connected;
|
std::atomic<bool> m_connected { false };
|
||||||
std::string m_device_str;
|
std::string m_device_str;
|
||||||
|
|
||||||
#if ! __APPLE__
|
#if ! __APPLE__
|
||||||
|
|||||||
Reference in New Issue
Block a user