TTS: Use lowercase when including Windows headers

Fixes building for mingw-w64 on case sensitive file systems
This commit is contained in:
sluicebox 2019-10-11 15:41:53 -07:00
parent d304111e9f
commit da77bfd792
2 changed files with 2 additions and 2 deletions

View file

@ -47,7 +47,7 @@
#endif
#ifndef SPError_h
#include <SPError.h>
#include <sperror.h>
#endif
#ifndef _INC_LIMITS

View file

@ -28,7 +28,7 @@
#if defined(USE_TTS) && defined(WIN32)
#include <basetyps.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
// by sphelper-scummvm.h. Mingw32 doesn't include any sapi headers or libraries