aboutsummaryrefslogtreecommitdiff
path: root/scumm/smush
diff options
context:
space:
mode:
authorPaweł Kołodziejski2003-09-02 07:49:40 +0000
committerPaweł Kołodziejski2003-09-02 07:49:40 +0000
commit5a6bce590b4261d2ff5615cbdccf2da66e5586e2 (patch)
treeb1a8734944281b12cc21d1a4eb4c5590bf7c517c /scumm/smush
parentf59a0633d6c58b1e37aaaa27af5ad6e4115e436a (diff)
downloadscummvm-rg350-5a6bce590b4261d2ff5615cbdccf2da66e5586e2.tar.gz
scummvm-rg350-5a6bce590b4261d2ff5615cbdccf2da66e5586e2.tar.bz2
scummvm-rg350-5a6bce590b4261d2ff5615cbdccf2da66e5586e2.zip
changed sounds volume to original volume level, and fixed sounds in bass intro
svn-id: r9963
Diffstat (limited to 'scumm/smush')
-rw-r--r--scumm/smush/smush_mixer.cpp2
-rw-r--r--scumm/smush/smush_player.cpp2
2 files changed, 2 insertions, 2 deletions
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);
}