[Scummvm-git-logs] scummvm master -> da77bfd7928f47438063e5e2d7ffffdc40e0c7d2

sluicebox 22204938+sluicebox at users.noreply.github.com
Sat Oct 12 00:46:13 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:
da77bfd792 TTS: Use lowercase when including Windows headers


Commit: da77bfd7928f47438063e5e2d7ffffdc40e0c7d2
    https://github.com/scummvm/scummvm/commit/da77bfd7928f47438063e5e2d7ffffdc40e0c7d2
Author: sluicebox (22204938+sluicebox at users.noreply.github.com)
Date: 2019-10-11T15:41:53-07: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