diff options
author | Jaromir Wysoglad | 2019-08-13 01:31:06 +0200 |
---|---|---|
committer | Filippos Karapetis | 2019-09-01 22:47:55 +0300 |
commit | 54c37f6f46531d4b7995bcda9677c7646f6622a3 (patch) | |
tree | fd33683d32d12bb4bd432e1b86b9651e8dc2842d /common | |
parent | c861581adc361c6f8a11e7634c2faa722fc6ef73 (diff) | |
download | scummvm-rg350-54c37f6f46531d4b7995bcda9677c7646f6622a3.tar.gz scummvm-rg350-54c37f6f46531d4b7995bcda9677c7646f6622a3.tar.bz2 scummvm-rg350-54c37f6f46531d4b7995bcda9677c7646f6622a3.zip |
TTS: Document diferences in resume()
On linux the resume() behaves slightly differently than on
other platforms.
Diffstat (limited to 'common')
-rw-r--r-- | common/text-to-speech.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/common/text-to-speech.h b/common/text-to-speech.h index d4f6c68048..019db23a0f 100644 --- a/common/text-to-speech.h +++ b/common/text-to-speech.h @@ -192,6 +192,10 @@ public: /** * Resumes the speech + * + * @note On linux, the speech resumes from the begining of the last speech being + * said, when pause() was called. On other platforms the speech resumes from + * exactly where it was paused(); */ virtual bool resume() { return false; } |