diff options
author | Jaromir Wysoglad | 2019-08-09 00:35:51 +0200 |
---|---|---|
committer | Filippos Karapetis | 2019-09-01 22:47:55 +0300 |
commit | 01d843c527d7808027a546dc5d9a23a981839f8f (patch) | |
tree | d87d2c02aad7e4b2df7191bf2e5325d4642df194 /common | |
parent | f131cad3e5aa5df1465bc027489c8c8947151d3f (diff) | |
download | scummvm-rg350-01d843c527d7808027a546dc5d9a23a981839f8f.tar.gz scummvm-rg350-01d843c527d7808027a546dc5d9a23a981839f8f.tar.bz2 scummvm-rg350-01d843c527d7808027a546dc5d9a23a981839f8f.zip |
TTS: Update documentation of INTERRUPT_NO_REPEAT
Diffstat (limited to 'common')
-rw-r--r-- | common/text-to-speech.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/common/text-to-speech.h b/common/text-to-speech.h index d227c95d77..68676567a3 100644 --- a/common/text-to-speech.h +++ b/common/text-to-speech.h @@ -167,9 +167,9 @@ public: * @param action What to do if another string is just being said. * Possible actions are: * INTERRUPT - interrupts the current speech - * INTERRUPT_NO_REPEAT - interrupts the current speech only if the str - * is different than the last string in the queue (or the string, that - * is currently being said if the queue is empty) + * INTERRUPT_NO_REPEAT - interrupts the speech (deletes the whole queue), + * if the str is the same as the string currently being said, + * it lets the current string finish. * QUEUE - queues the speech * QUEUE_NO_REPEAT - queues the speech only if the str is different than * the last string in the queue (or the string, that is currently |