Skip to content

Commit

Permalink
Fixed bug 5126 - MinGW compile error SDL_windowssensor.c
Browse files Browse the repository at this point in the history
Martin Gerhardy

SDL_windowssensor.c includes InitGuid.h - but it should be initguid.h
  • Loading branch information
slouken committed Jun 17, 2020
1 parent f1d5ced commit 56622f9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/sensor/windows/SDL_windowssensor.c
Expand Up @@ -32,9 +32,9 @@
#include "../../core/windows/SDL_windows.h"

#define COBJMACROS
#include <InitGuid.h>
#include <SensorsApi.h>
#include <Sensors.h>
#include <initguid.h>
#include <sensorsapi.h>
#include <sensors.h>

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);
Expand Down

0 comments on commit 56622f9

Please sign in to comment.