diff options
author | Paweł Kołodziejski | 2003-03-07 06:41:44 +0000 |
---|---|---|
committer | Paweł Kołodziejski | 2003-03-07 06:41:44 +0000 |
commit | 26144eda33ffb819f3026836dbda8c3532207bda (patch) | |
tree | 6c0689903fee4211beecdbf5a051bcfc0d6afa2e /scumm/smush | |
parent | 840184da0cc9f9a82ceaf049eeb2fe70657ead2e (diff) | |
download | scummvm-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/smush')
-rw-r--r-- | scumm/smush/player.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scumm/smush/player.cpp b/scumm/smush/player.cpp index 2a87a60818..e3526fe11a 100644 --- a/scumm/smush/player.cpp +++ b/scumm/smush/player.cpp @@ -384,7 +384,7 @@ void SmushPlayer::handleImuseAction8(Chunk &b, int32 flags, int32 unknown, int32 if (_IACTchannel == -1) { _IACTchannel = g_scumm->_mixer->playStream(NULL, -1, output_data, 0x1000, 22050, - SoundMixer::FLAG_STEREO | SoundMixer::FLAG_16BITS); + SoundMixer::FLAG_STEREO | SoundMixer::FLAG_16BITS, -1, 200000); } else { g_scumm->_mixer->append(_IACTchannel, output_data, 0x1000, 22050, SoundMixer::FLAG_STEREO | SoundMixer::FLAG_16BITS); |