aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--sky/sound.cpp5
1 files changed, 1 insertions, 4 deletions
diff --git a/sky/sound.cpp b/sky/sound.cpp
index c174e2f05b..0d51390fe4 100644
--- a/sky/sound.cpp
+++ b/sky/sound.cpp
@@ -1228,10 +1228,7 @@ bool SkySound::startSpeech(uint16 textNum) {
memcpy(playBuffer, speechData + sizeof(dataFileHeader), speechSize);
free(speechData);
- _skyDisk->flushPrefetched();
- // TODO: implement pre_after_table_area to find and prefetch file for next speech
-
- int slt = _mixer->playRaw(&_ingameSpeech, playBuffer, speechSize - 64, 11025, SoundMixer::FLAG_UNSIGNED | SoundMixer::FLAG_AUTOFREE);
+ _mixer->playRaw(&_ingameSpeech, playBuffer, speechSize - 64, 11025, SoundMixer::FLAG_UNSIGNED | SoundMixer::FLAG_AUTOFREE);
return true;
}