summaryrefslogtreecommitdiff
path: root/Source/Core/InputCommon/ControllerInterface/ControllerInterface.h
diff options
context:
space:
mode:
authorMichael M <mchtly@gmail.com>2017-11-04 07:37:03 -0700
committerMichael M <mchtly@gmail.com>2017-11-10 13:37:42 -0800
commit8e6677be90d67a652eb4bcf7d0b76f548e254172 (patch)
treee1065dbda868159448f446d3a7e8718c557f035f /Source/Core/InputCommon/ControllerInterface/ControllerInterface.h
parentfd7cbd633edbac9e38592b9253a507410d7d6553 (diff)
ControllerInterface: don't call InvokeDevicesChangedCallbacks more than once when refreshing
Diffstat (limited to 'Source/Core/InputCommon/ControllerInterface/ControllerInterface.h')
-rw-r--r--Source/Core/InputCommon/ControllerInterface/ControllerInterface.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/Source/Core/InputCommon/ControllerInterface/ControllerInterface.h b/Source/Core/InputCommon/ControllerInterface/ControllerInterface.h
index b485cda31a..06fd7c544d 100644
--- a/Source/Core/InputCommon/ControllerInterface/ControllerInterface.h
+++ b/Source/Core/InputCommon/ControllerInterface/ControllerInterface.h
@@ -4,6 +4,7 @@
#pragma once
+#include <atomic>
#include <functional>
#include <memory>
#include <mutex>
@@ -57,6 +58,7 @@ 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_populating_devices{false};
void* m_hwnd;
};