TTS: Use lowercase when including Windows headers
Fixes building for mingw-w64 on case sensitive file systems
This commit is contained in:
parent
d304111e9f
commit
da77bfd792
2 changed files with 2 additions and 2 deletions
|
@ -47,7 +47,7 @@
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifndef SPError_h
|
#ifndef SPError_h
|
||||||
#include <SPError.h>
|
#include <sperror.h>
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifndef _INC_LIMITS
|
#ifndef _INC_LIMITS
|
||||||
|
|
|
@ -28,7 +28,7 @@
|
||||||
#if defined(USE_TTS) && defined(WIN32)
|
#if defined(USE_TTS) && defined(WIN32)
|
||||||
#include <basetyps.h>
|
#include <basetyps.h>
|
||||||
#include <windows.h>
|
#include <windows.h>
|
||||||
#include <Servprov.h>
|
#include <servprov.h>
|
||||||
|
|
||||||
// Mingw-w64 is missing symbols for two guids declared in sapi.h which are used
|
// Mingw-w64 is missing symbols for two guids declared in sapi.h which are used
|
||||||
// by sphelper-scummvm.h. Mingw32 doesn't include any sapi headers or libraries
|
// by sphelper-scummvm.h. Mingw32 doesn't include any sapi headers or libraries
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue