aboutsummaryrefslogtreecommitdiff
path: root/engines/saga/rscfile.cpp
diff options
context:
space:
mode:
authorFilippos Karapetis2008-09-05 13:02:03 +0000
committerFilippos Karapetis2008-09-05 13:02:03 +0000
commit6d4900ad06821c69334735b48f8451e32030bcad (patch)
tree8027fe3c96bc6ea7e58812a36bdc35421ea12afd /engines/saga/rscfile.cpp
parent531ff7b33c657a10a1fd81219a5a893510ca07ae (diff)
downloadscummvm-rg350-6d4900ad06821c69334735b48f8451e32030bcad.tar.gz
scummvm-rg350-6d4900ad06821c69334735b48f8451e32030bcad.tar.bz2
scummvm-rg350-6d4900ad06821c69334735b48f8451e32030bcad.zip
Hopefully fixed the chaos with the SAGA volume values. This also fixes the broken volume introduced with the introduction of the RTL code in the engine
svn-id: r34349
Diffstat (limited to 'engines/saga/rscfile.cpp')
-rw-r--r--engines/saga/rscfile.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/saga/rscfile.cpp b/engines/saga/rscfile.cpp
index e150caeca5..9bf882153c 100644
--- a/engines/saga/rscfile.cpp
+++ b/engines/saga/rscfile.cpp
@@ -805,7 +805,7 @@ void Resource::loadGlobalResources(int chapter, int actorsEntrance) {
free(resourcePointer);
} else {
// The IHNM demo has a fixed music track and doesn't load a song table
- _vm->_music->setVolume(_vm->_musicVolume == 10 ? -1 : _vm->_musicVolume * 25, 1);
+ _vm->_music->setVolume(_vm->_musicVolume, 1);
_vm->_music->play(3, MUSIC_LOOP);
free(resourcePointer);
}