From 56622f9c92dcc6fd0bac4b069a5103df575e75c6 Mon Sep 17 00:00:00 2001 From: Sam Lantinga Date: Wed, 17 Jun 2020 10:09:07 -0700 Subject: [PATCH] Fixed bug 5126 - MinGW compile error SDL_windowssensor.c Martin Gerhardy SDL_windowssensor.c includes InitGuid.h - but it should be initguid.h --- src/sensor/windows/SDL_windowssensor.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/sensor/windows/SDL_windowssensor.c b/src/sensor/windows/SDL_windowssensor.c index f28b63518..efb7e3fcf 100644 --- a/src/sensor/windows/SDL_windowssensor.c +++ b/src/sensor/windows/SDL_windowssensor.c @@ -32,9 +32,9 @@ #include "../../core/windows/SDL_windows.h" #define COBJMACROS -#include -#include -#include +#include +#include +#include DEFINE_GUID(SDL_CLSID_SensorManager, 0x77A1C827, 0xFCD2, 0x4689, 0x89, 0x15, 0x9D, 0x61, 0x3C, 0xC5, 0xFA, 0x3E); DEFINE_GUID(SDL_IID_SensorManager, 0xBD77DB67, 0x45A8, 0x42DC, 0x8D, 0x00, 0x6D, 0xCF, 0x15, 0xF8, 0x37, 0x7A);