diff options
author | Robert Göffringmann | 2003-07-04 20:17:26 +0000 |
---|---|---|
committer | Robert Göffringmann | 2003-07-04 20:17:26 +0000 |
commit | f24ca1fcdc649e78dba89192ed994a9b06a29fb8 (patch) | |
tree | dc3aa0b9656b057cf67cf9f2b2423402ce13faca | |
parent | 484d0a84c56652d0dba314b0583c9b2fc74cb872 (diff) | |
download | scummvm-rg350-f24ca1fcdc649e78dba89192ed994a9b06a29fb8.tar.gz scummvm-rg350-f24ca1fcdc649e78dba89192ed994a9b06a29fb8.tar.bz2 scummvm-rg350-f24ca1fcdc649e78dba89192ed994a9b06a29fb8.zip |
removed some useless lines
svn-id: r8748
-rw-r--r-- | sky/sound.cpp | 5 |
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; } |