aboutsummaryrefslogtreecommitdiff
path: root/backends/text-to-speech/macosx
diff options
context:
space:
mode:
authorJaromir Wysoglad2019-08-15 15:30:30 +0200
committerFilippos Karapetis2019-09-01 22:47:55 +0300
commitb97333d4b715013f37700c200fb1619da9225de8 (patch)
tree1a96019cdf8bada4fdda64123dc3b10506121438 /backends/text-to-speech/macosx
parentd49331132abf01b6a22c9dd051a042914206fd6e (diff)
downloadscummvm-rg350-b97333d4b715013f37700c200fb1619da9225de8.tar.gz
scummvm-rg350-b97333d4b715013f37700c200fb1619da9225de8.tar.bz2
scummvm-rg350-b97333d4b715013f37700c200fb1619da9225de8.zip
TTS: Remove USE_PLATFORM_TTS defines
Use defined(USE_TTS) && defined(PLATFORM) instead
Diffstat (limited to 'backends/text-to-speech/macosx')
-rw-r--r--backends/text-to-speech/macosx/macosx-text-to-speech.h2
-rw-r--r--backends/text-to-speech/macosx/macosx-text-to-speech.mm2
2 files changed, 2 insertions, 2 deletions
diff --git a/backends/text-to-speech/macosx/macosx-text-to-speech.h b/backends/text-to-speech/macosx/macosx-text-to-speech.h
index 9ed418dafa..40ea8083dc 100644
--- a/backends/text-to-speech/macosx/macosx-text-to-speech.h
+++ b/backends/text-to-speech/macosx/macosx-text-to-speech.h
@@ -25,7 +25,7 @@
#include "common/scummsys.h"
-#if defined(USE_MACOSX_TTS)
+#if defined(USE_TTS) && defined(MACOSX)
#include "common/text-to-speech.h"
#include "common/queue.h"
diff --git a/backends/text-to-speech/macosx/macosx-text-to-speech.mm b/backends/text-to-speech/macosx/macosx-text-to-speech.mm
index 1e8a10e45b..72f56f91be 100644
--- a/backends/text-to-speech/macosx/macosx-text-to-speech.mm
+++ b/backends/text-to-speech/macosx/macosx-text-to-speech.mm
@@ -25,7 +25,7 @@
#include "backends/text-to-speech/macosx/macosx-text-to-speech.h"
-#if defined(USE_MACOSX_TTS)
+#if defined(USE_TTS) && defined(MACOSX)
#include "common/translation.h"
#include <AppKit/NSSpeechSynthesizer.h>
#include <Foundation/NSString.h>