From 7b8932554e04aca62d3c2d4ffbb5b9212a55f801 Mon Sep 17 00:00:00 2001 From: Jarhmander Date: Mon, 26 Apr 2021 03:29:38 -0400 Subject: [PATCH] Backends: Win32: Change the case of XInput.h include, so it cross-compile nicely on unices. (#4074) --- backends/imgui_impl_win32.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backends/imgui_impl_win32.cpp b/backends/imgui_impl_win32.cpp index edb7c3c5..a198da94 100644 --- a/backends/imgui_impl_win32.cpp +++ b/backends/imgui_impl_win32.cpp @@ -25,7 +25,7 @@ // Using XInput for gamepad (will load DLL dynamically) #ifndef IMGUI_IMPL_WIN32_DISABLE_GAMEPAD -#include +#include typedef DWORD (WINAPI *PFN_XInputGetCapabilities)(DWORD, DWORD, XINPUT_CAPABILITIES*); typedef DWORD (WINAPI *PFN_XInputGetState)(DWORD, XINPUT_STATE*); #endif