summaryrefslogtreecommitdiff
path: root/Source/Core/InputCommon/ControllerInterface/ControllerInterface.cpp
diff options
context:
space:
mode:
authorJasper St. Pierre <jstpierre@mecheye.net>2016-09-03 15:23:34 -0700
committerJasper St. Pierre <jstpierre@mecheye.net>2016-09-04 10:44:22 -0700
commit928d05ec47a3dd46c6968088e934ff1555fc7fc5 (patch)
treec3e7ce52af0a13a3a9c8fef0bfcdb57888b7b868 /Source/Core/InputCommon/ControllerInterface/ControllerInterface.cpp
parent2b640a4f7d961880d53ba7b193774e4aa4a80c65 (diff)
InputCommon: Remove the Xlib backend
The XInput2 backend is more performant, so let's default to it and remove the old, core-only backend.
Diffstat (limited to 'Source/Core/InputCommon/ControllerInterface/ControllerInterface.cpp')
-rw-r--r--Source/Core/InputCommon/ControllerInterface/ControllerInterface.cpp6
1 files changed, 0 insertions, 6 deletions
diff --git a/Source/Core/InputCommon/ControllerInterface/ControllerInterface.cpp b/Source/Core/InputCommon/ControllerInterface/ControllerInterface.cpp
index f1e62e73cf..9f35040539 100644
--- a/Source/Core/InputCommon/ControllerInterface/ControllerInterface.cpp
+++ b/Source/Core/InputCommon/ControllerInterface/ControllerInterface.cpp
@@ -14,11 +14,8 @@
#include "InputCommon/ControllerInterface/DInput/DInput.h"
#endif
#ifdef CIFACE_USE_XLIB
-#include "InputCommon/ControllerInterface/Xlib/Xlib.h"
-#ifdef CIFACE_USE_X11_XINPUT2
#include "InputCommon/ControllerInterface/Xlib/XInput2.h"
#endif
-#endif
#ifdef CIFACE_USE_OSX
#include "InputCommon/ControllerInterface/OSX/OSX.h"
#endif
@@ -63,11 +60,8 @@ void ControllerInterface::Initialize(void* const hwnd)
ciface::XInput::Init();
#endif
#ifdef CIFACE_USE_XLIB
- ciface::Xlib::Init(hwnd);
-#ifdef CIFACE_USE_X11_XINPUT2
ciface::XInput2::Init(hwnd);
#endif
-#endif
#ifdef CIFACE_USE_OSX
ciface::OSX::Init(hwnd);
#endif