aboutsummaryrefslogtreecommitdiff
path: root/backends/text-to-speech
diff options
context:
space:
mode:
authorsluicebox2019-10-11 15:41:53 -0700
committersluicebox2019-10-11 15:41:53 -0700
commitda77bfd7928f47438063e5e2d7ffffdc40e0c7d2 (patch)
tree238bd84b487170ac7e4fa280eb9a974ad497ce1d /backends/text-to-speech
parentd304111e9fc778d713ead55d3a60509a895be0b8 (diff)
downloadscummvm-rg350-da77bfd7928f47438063e5e2d7ffffdc40e0c7d2.tar.gz
scummvm-rg350-da77bfd7928f47438063e5e2d7ffffdc40e0c7d2.tar.bz2
scummvm-rg350-da77bfd7928f47438063e5e2d7ffffdc40e0c7d2.zip
TTS: Use lowercase when including Windows headers
Fixes building for mingw-w64 on case sensitive file systems
Diffstat (limited to 'backends/text-to-speech')
-rw-r--r--backends/text-to-speech/windows/sphelper-scummvm.h2
-rw-r--r--backends/text-to-speech/windows/windows-text-to-speech.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/backends/text-to-speech/windows/sphelper-scummvm.h b/backends/text-to-speech/windows/sphelper-scummvm.h
index 93b2bb52f1..3fc7772d98 100644
--- a/backends/text-to-speech/windows/sphelper-scummvm.h
+++ b/backends/text-to-speech/windows/sphelper-scummvm.h
@@ -47,7 +47,7 @@
#endif
#ifndef SPError_h
-#include <SPError.h>
+#include <sperror.h>
#endif
#ifndef _INC_LIMITS
diff --git a/backends/text-to-speech/windows/windows-text-to-speech.cpp b/backends/text-to-speech/windows/windows-text-to-speech.cpp
index 3399e45826..0e794d7baa 100644
--- a/backends/text-to-speech/windows/windows-text-to-speech.cpp
+++ b/backends/text-to-speech/windows/windows-text-to-speech.cpp
@@ -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