diff options
Diffstat (limited to 'Source/Core/InputCommon/ControllerInterface/Xlib/XInput2.cpp')
| -rw-r--r-- | Source/Core/InputCommon/ControllerInterface/Xlib/XInput2.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Source/Core/InputCommon/ControllerInterface/Xlib/XInput2.cpp b/Source/Core/InputCommon/ControllerInterface/Xlib/XInput2.cpp index d46f1cf4f6..c7c2e74242 100644 --- a/Source/Core/InputCommon/ControllerInterface/Xlib/XInput2.cpp +++ b/Source/Core/InputCommon/ControllerInterface/Xlib/XInput2.cpp @@ -76,10 +76,12 @@ void Init(void* const hwnd) { current_master = &all_masters[i]; if (current_master->use == XIMasterPointer) + { // Since current_master is a master pointer, its attachment must // be a master keyboard. - g_controller_interface.AddDevice(new KeyboardMouse( + g_controller_interface.AddDevice(std::make_shared<KeyboardMouse>( (Window)hwnd, xi_opcode, current_master->deviceid, current_master->attachment)); + } } XCloseDisplay(dpy); |
