aboutsummaryrefslogtreecommitdiff
path: root/scumm/smush/smush_mixer.cpp
diff options
context:
space:
mode:
authorPaweł Kołodziejski2004-06-21 06:59:24 +0000
committerPaweł Kołodziejski2004-06-21 06:59:24 +0000
commitfdb2c41cdda7fa83856bf8654262387fe5776680 (patch)
tree32af2b60c2f1d56f9198c78a4c0dc8da4d55d110 /scumm/smush/smush_mixer.cpp
parentb44caf2c17768e968cd87a6a7aef49fb1fbf50d1 (diff)
downloadscummvm-rg350-fdb2c41cdda7fa83856bf8654262387fe5776680.tar.gz
scummvm-rg350-fdb2c41cdda7fa83856bf8654262387fe5776680.tar.bz2
scummvm-rg350-fdb2c41cdda7fa83856bf8654262387fe5776680.zip
increased audio buffer to solve scuttering problems
svn-id: r13993
Diffstat (limited to 'scumm/smush/smush_mixer.cpp')
-rw-r--r--scumm/smush/smush_mixer.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/scumm/smush/smush_mixer.cpp b/scumm/smush/smush_mixer.cpp
index 7be2cdf604..1ceb1718b3 100644
--- a/scumm/smush/smush_mixer.cpp
+++ b/scumm/smush/smush_mixer.cpp
@@ -120,7 +120,7 @@ bool SmushMixer::handleFrame() {
if (_mixer->isReady()) {
if (!_channels[i].handle.isActive())
- _mixer->newStream(&_channels[i].handle, rate, flags, 400000);
+ _mixer->newStream(&_channels[i].handle, rate, flags, 500000);
_mixer->setChannelVolume(_channels[i].handle, vol);
_mixer->setChannelBalance(_channels[i].handle, pan);
_mixer->appendStream(_channels[i].handle, data, size);