diff options
author | Johannes Schickel | 2009-02-01 20:54:24 +0000 |
---|---|---|
committer | Johannes Schickel | 2009-02-01 20:54:24 +0000 |
commit | 4662333b81eb238daa96c69897e8f62635e132b3 (patch) | |
tree | 27a315a4790327f4048be13008eeb33e23dcbb64 /engines | |
parent | 1aa84d4b5e3662fbcc844fa6062adb8de42ef5d4 (diff) | |
download | scummvm-rg350-4662333b81eb238daa96c69897e8f62635e132b3.tar.gz scummvm-rg350-4662333b81eb238daa96c69897e8f62635e132b3.tar.bz2 scummvm-rg350-4662333b81eb238daa96c69897e8f62635e132b3.zip |
Oops wrong parameter in last commit.
svn-id: r36187
Diffstat (limited to 'engines')
-rw-r--r-- | engines/kyra/sound.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/kyra/sound.cpp b/engines/kyra/sound.cpp index 7e16c5be53..a1088bf75d 100644 --- a/engines/kyra/sound.cpp +++ b/engines/kyra/sound.cpp @@ -127,7 +127,7 @@ void Sound::voicePlayFromList(Common::List<const char*> fileList) { for (Common::List<const char*>::iterator i = fileList.begin(); i != fileList.end(); i++) { uint32 fileSize = 0; uint8 *file = _vm->resource()->fileData(*i, &fileSize); - Common::MemoryReadStream vocStream(file, fileSize, true); + Common::MemoryReadStream vocStream(file, fileSize, false); int size, rate; uint8 *data = Audio::loadVOCFromStream(vocStream, size, rate); |