diff options
author | Thierry Crozat | 2019-07-28 14:57:30 +0100 |
---|---|---|
committer | Filippos Karapetis | 2019-09-01 22:47:55 +0300 |
commit | 5baa023ed0d30024ddc3ef58442e193987becb64 (patch) | |
tree | 50bf859b0a8234b205a2077070f81d6fec8aa450 | |
parent | 0434419b31cc6c27d2fdebb34abdf0b3131f6b99 (diff) | |
download | scummvm-rg350-5baa023ed0d30024ddc3ef58442e193987becb64.tar.gz scummvm-rg350-5baa023ed0d30024ddc3ef58442e193987becb64.tar.bz2 scummvm-rg350-5baa023ed0d30024ddc3ef58442e193987becb64.zip |
TTS: Improve documentation
-rw-r--r-- | common/text-to-speech.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/common/text-to-speech.h b/common/text-to-speech.h index cefbb7177e..004de3116b 100644 --- a/common/text-to-speech.h +++ b/common/text-to-speech.h @@ -148,6 +148,8 @@ public: * Says the given string * * @param str The string to say + * @param charset The encoding of the string. If empty this is assumed to be the + * encoding used for the GUI. */ virtual bool say(String str, String charset = "") { return false; } |