diff options
author | Jaromir Wysoglad | 2019-07-18 13:34:22 +0200 |
---|---|---|
committer | Filippos Karapetis | 2019-09-01 22:47:55 +0300 |
commit | 5c1f562452e201a968063e176b55fc14d912aea1 (patch) | |
tree | 67d7d4bbabe1bc18f5aea429bb27cd511e1088cb /common | |
parent | 4d9572073192a3cefe7b148a27197c2ca9f60087 (diff) | |
download | scummvm-rg350-5c1f562452e201a968063e176b55fc14d912aea1.tar.gz scummvm-rg350-5c1f562452e201a968063e176b55fc14d912aea1.tar.bz2 scummvm-rg350-5c1f562452e201a968063e176b55fc14d912aea1.zip |
TTS: Implement conversion to UTF-8 in say on linux
Diffstat (limited to 'common')
-rw-r--r-- | common/text-to-speech.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/text-to-speech.h b/common/text-to-speech.h index 606f8d2d4b..589b99834b 100644 --- a/common/text-to-speech.h +++ b/common/text-to-speech.h @@ -150,7 +150,7 @@ public: * * @param str The string to say */ - virtual bool say(String str) { return false; } + virtual bool say(String str, String charset = "") { return false; } /** * Stops the speech |