diff options
Diffstat (limited to 'Source/Core/InputCommon/ControllerInterface/ControllerInterface.h')
| -rw-r--r-- | Source/Core/InputCommon/ControllerInterface/ControllerInterface.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/InputCommon/ControllerInterface/ControllerInterface.h b/Source/Core/InputCommon/ControllerInterface/ControllerInterface.h index d5567222a4..0d712e5245 100644 --- a/Source/Core/InputCommon/ControllerInterface/ControllerInterface.h +++ b/Source/Core/InputCommon/ControllerInterface/ControllerInterface.h @@ -56,7 +56,7 @@ public: private: std::vector<std::function<void()>> m_devices_changed_callbacks; mutable std::mutex m_callbacks_mutex; - bool m_is_init; + std::atomic<bool> m_is_init; std::atomic<bool> m_is_populating_devices{false}; WindowSystemInfo m_wsi; }; |
