From 5a6bce590b4261d2ff5615cbdccf2da66e5586e2 Mon Sep 17 00:00:00 2001 From: Paweł Kołodziejski Date: Tue, 2 Sep 2003 07:49:40 +0000 Subject: changed sounds volume to original volume level, and fixed sounds in bass intro svn-id: r9963 --- scumm/smush/smush_mixer.cpp | 2 +- scumm/smush/smush_player.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'scumm/smush') diff --git a/scumm/smush/smush_mixer.cpp b/scumm/smush/smush_mixer.cpp index 04247fe2b4..02dc117b29 100644 --- a/scumm/smush/smush_mixer.cpp +++ b/scumm/smush/smush_mixer.cpp @@ -135,7 +135,7 @@ bool SmushMixer::handleFrame() { if (_silentMixer == false) { if (_channels[i].mixer_index == 0) { - _mixer->newStream(&_channels[i].mixer_index, data, size, rate, flags, 500000, 127, 0); + _mixer->newStream(&_channels[i].mixer_index, data, size, rate, flags, 500000, 255, 0); } else { _mixer->appendStream(_channels[i].mixer_index, data, size); } diff --git a/scumm/smush/smush_player.cpp b/scumm/smush/smush_player.cpp index 4775167777..e82c7d6ae8 100644 --- a/scumm/smush/smush_player.cpp +++ b/scumm/smush/smush_player.cpp @@ -460,7 +460,7 @@ void SmushPlayer::handleImuseAction(Chunk &b) { if (_IACTchannel == 0) { _scumm->_mixer->newStream(&_IACTchannel, output_data, 0x1000, 22050, - SoundMixer::FLAG_STEREO | SoundMixer::FLAG_16BITS, 200000, 127, 0); + SoundMixer::FLAG_STEREO | SoundMixer::FLAG_16BITS, 200000, 255, 0); } else { _scumm->_mixer->appendStream(_IACTchannel, output_data, 0x1000); } -- cgit v1.2.3