aboutsummaryrefslogtreecommitdiff
path: root/sound/mixer.cpp
diff options
context:
space:
mode:
authorPaweł Kołodziejski2002-09-15 06:19:33 +0000
committerPaweł Kołodziejski2002-09-15 06:19:33 +0000
commite6751d0d8f49e326ea7b1f6f506d1a9dfbd875db (patch)
treec84eca69e3704a5b67bbc05f71d9183fae8e51f7 /sound/mixer.cpp
parent2f91c18b22d584dbcaba9f86396bb322050f5344 (diff)
downloadscummvm-rg350-e6751d0d8f49e326ea7b1f6f506d1a9dfbd875db.tar.gz
scummvm-rg350-e6751d0d8f49e326ea7b1f6f506d1a9dfbd875db.tar.bz2
scummvm-rg350-e6751d0d8f49e326ea7b1f6f506d1a9dfbd875db.zip
new smush player need bigger buffer
svn-id: r4942
Diffstat (limited to 'sound/mixer.cpp')
-rw-r--r--sound/mixer.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/mixer.cpp b/sound/mixer.cpp
index 0e1dc90761..c1ab3ed884 100644
--- a/sound/mixer.cpp
+++ b/sound/mixer.cpp
@@ -593,7 +593,7 @@ SoundMixer::ChannelStream::ChannelStream(SoundMixer * mixer, void * sound, uint3
byte flags) {
_mixer = mixer;
_flags = flags;
- _bufferSize = 850000;
+ _bufferSize = 2000000;
_ptr = (byte *)malloc(_bufferSize);
memcpy(_ptr, sound, size);
_endOfData = _ptr + size;