summaryrefslogtreecommitdiff
path: root/Source/Core/InputCommon/ControllerInterface/DInput/DInput.cpp
diff options
context:
space:
mode:
authorMichael M <mchtly@gmail.com>2017-11-10 12:30:37 -0800
committerJordan Woyak <jordan.woyak@gmail.com>2019-03-29 08:01:40 -0500
commitd26c1ce24d9108114d7eab97cfc2ab4f3eea28ee (patch)
tree8bbc9de32bfea224eb11c33076996f56b4e9925a /Source/Core/InputCommon/ControllerInterface/DInput/DInput.cpp
parent92ca6e124e82f63b61982a5ecfb26ca818f2fe47 (diff)
Add hotplug support to DInput and XInput controller backends
Diffstat (limited to 'Source/Core/InputCommon/ControllerInterface/DInput/DInput.cpp')
-rw-r--r--Source/Core/InputCommon/ControllerInterface/DInput/DInput.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/Source/Core/InputCommon/ControllerInterface/DInput/DInput.cpp b/Source/Core/InputCommon/ControllerInterface/DInput/DInput.cpp
index aacbcd55f8..e65da0eb78 100644
--- a/Source/Core/InputCommon/ControllerInterface/DInput/DInput.cpp
+++ b/Source/Core/InputCommon/ControllerInterface/DInput/DInput.cpp
@@ -46,6 +46,8 @@ std::string GetDeviceName(const LPDIRECTINPUTDEVICE8 device)
void PopulateDevices(HWND hwnd)
{
+ g_controller_interface.RemoveDevice([](const auto* dev) { return dev->GetSource() == "DInput"; });
+
IDirectInput8* idi8;
if (FAILED(DirectInput8Create(GetModuleHandle(nullptr), DIRECTINPUT_VERSION, IID_IDirectInput8,
(LPVOID*)&idi8, nullptr)))