[Scummvm-git-logs] scummvm branch-2-1 -> cc78cb54b21737902ce1f78f075cfe14afd85fbc
lotharsm
serra at scummvm.org
Sat Oct 12 15:09:58 CEST 2019
This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .
Summary:
cc78cb54b2 TTS: Use lowercase when including Windows headers
Commit: cc78cb54b21737902ce1f78f075cfe14afd85fbc
https://github.com/scummvm/scummvm/commit/cc78cb54b21737902ce1f78f075cfe14afd85fbc
Author: sluicebox (22204938+sluicebox at users.noreply.github.com)
Date: 2019-10-12T15:09:35+02:00
Commit Message:
TTS: Use lowercase when including Windows headers
Fixes building for mingw-w64 on case sensitive file systems
Changed paths:
backends/text-to-speech/windows/sphelper-scummvm.h
backends/text-to-speech/windows/windows-text-to-speech.cpp
diff --git a/backends/text-to-speech/windows/sphelper-scummvm.h b/backends/text-to-speech/windows/sphelper-scummvm.h
index 93b2bb5..3fc7772 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 3399e45..0e794d7 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
More information about the Scummvm-git-logs
mailing list