From bd2e27978e64bdd08940c1798b4692af6b84b082 Mon Sep 17 00:00:00 2001 From: elasota Date: Sun, 16 Feb 2020 20:55:14 -0500 Subject: [PATCH] Use older XInput --- GpInputDriver_XInput/GpInputDriverXInput.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/GpInputDriver_XInput/GpInputDriverXInput.cpp b/GpInputDriver_XInput/GpInputDriverXInput.cpp index 7b2d2b8..0f4d8ef 100644 --- a/GpInputDriver_XInput/GpInputDriverXInput.cpp +++ b/GpInputDriver_XInput/GpInputDriverXInput.cpp @@ -6,7 +6,7 @@ #include #include -#pragma comment(lib, "xinput.lib") +#pragma comment(lib, "xinput9_1_0.lib") void GpInputDriverXInput::ProcessInput() { @@ -179,5 +179,5 @@ void GpInputDriverXInput::ProcessAxisStateChange(int16_t prevState, int16_t newS extern "C" __declspec(dllexport) IGpInputDriver *GpDriver_CreateInputDriver_XInput(const GpInputDriverProperties &properties) { - return GpInputDriverXInput::Create(properties); + return GpInputDriverXInput::Create(properties); }