diff options
author | Jaromir Wysoglad | 2019-08-13 01:10:08 +0200 |
---|---|---|
committer | Filippos Karapetis | 2019-09-01 22:47:55 +0300 |
commit | c861581adc361c6f8a11e7634c2faa722fc6ef73 (patch) | |
tree | dcbfa8c70430299c60e9926241e022728e32dbc4 /backends/text-to-speech | |
parent | c2c44582537264c7fe0fe55ba456e54b405d0678 (diff) | |
download | scummvm-rg350-c861581adc361c6f8a11e7634c2faa722fc6ef73.tar.gz scummvm-rg350-c861581adc361c6f8a11e7634c2faa722fc6ef73.tar.bz2 scummvm-rg350-c861581adc361c6f8a11e7634c2faa722fc6ef73.zip |
TTS: Fix missing indentation
Diffstat (limited to 'backends/text-to-speech')
-rw-r--r-- | backends/text-to-speech/windows/windows-text-to-speech.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/backends/text-to-speech/windows/windows-text-to-speech.cpp b/backends/text-to-speech/windows/windows-text-to-speech.cpp index ec3961dd6b..c4de02d243 100644 --- a/backends/text-to-speech/windows/windows-text-to-speech.cpp +++ b/backends/text-to-speech/windows/windows-text-to-speech.cpp @@ -229,7 +229,7 @@ bool WindowsTextToSpeechManager::stop() { WaitForSingleObject(_speechMutex, INFINITE); while (!_speechQueue.empty()) { if (_speechQueue.front() != NULL) - free(_speechQueue.front()); + free(_speechQueue.front()); _speechQueue.pop_front(); } _speechQueue.push_back(NULL); |