Use older XInput

This commit is contained in:
elasota
2020-02-16 20:55:14 -05:00
parent a58b73aeb4
commit bd2e27978e

View File

@@ -6,7 +6,7 @@
#include <stdlib.h>
#include <new>
#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);
}