aboutsummaryrefslogtreecommitdiff
path: root/scumm/sound.cpp
diff options
context:
space:
mode:
authorPaweł Kołodziejski2003-03-07 06:41:44 +0000
committerPaweł Kołodziejski2003-03-07 06:41:44 +0000
commit26144eda33ffb819f3026836dbda8c3532207bda (patch)
tree6c0689903fee4211beecdbf5a051bcfc0d6afa2e /scumm/sound.cpp
parent840184da0cc9f9a82ceaf049eeb2fe70657ead2e (diff)
downloadscummvm-rg350-26144eda33ffb819f3026836dbda8c3532207bda.tar.gz
scummvm-rg350-26144eda33ffb819f3026836dbda8c3532207bda.tar.bz2
scummvm-rg350-26144eda33ffb819f3026836dbda8c3532207bda.zip
decreased sound buffer for imuse digital, bundle music, and cmi smush audio
svn-id: r6735
Diffstat (limited to 'scumm/sound.cpp')
-rw-r--r--scumm/sound.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/scumm/sound.cpp b/scumm/sound.cpp
index 84f83a7d8a..b32e1841b7 100644
--- a/scumm/sound.cpp
+++ b/scumm/sound.cpp
@@ -1152,7 +1152,7 @@ void Sound::bundleMusicHandler(Scumm *scumm) {
_bundleMusicPosition += final_size;
if (_bundleMusicTrack == -1) {
_bundleMusicTrack = _scumm->_mixer->playStream(NULL, _scumm->_mixer->_beginSlots - 1, buffer, final_size, rate,
- SoundMixer::FLAG_AUTOFREE | SoundMixer::FLAG_16BITS | SoundMixer::FLAG_STEREO, -1, 2000000);
+ SoundMixer::FLAG_AUTOFREE | SoundMixer::FLAG_16BITS | SoundMixer::FLAG_STEREO, -1, 300000);
} else {
_scumm->_mixer->append(_bundleMusicTrack, buffer, final_size, rate,
SoundMixer::FLAG_AUTOFREE | SoundMixer::FLAG_16BITS | SoundMixer::FLAG_STEREO);