aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--saga/saga.cpp3
-rw-r--r--sky/sky.cpp1
2 files changed, 3 insertions, 1 deletions
diff --git a/saga/saga.cpp b/saga/saga.cpp
index f802a045b4..30a1f30e8c 100644
--- a/saga/saga.cpp
+++ b/saga/saga.cpp
@@ -112,7 +112,8 @@ SagaEngine::SagaEngine(GameDetector *detector, OSystem *syst)
warning("Sound initialization failed.");
}
- _mixer->setVolume(ConfMan.getInt("sfx_volume") * ConfMan.getInt("master_volume") / 255);
+ _mixer->setVolume(ConfMan.getInt("sfx_volume"));
+ _mixer->setMusicVolume(ConfMan.getInt("music_volume"));
_vm = this;
}
diff --git a/sky/sky.cpp b/sky/sky.cpp
index 2c19622f7f..e45c3c53d8 100644
--- a/sky/sky.cpp
+++ b/sky/sky.cpp
@@ -255,6 +255,7 @@ int SkyEngine::init(GameDetector &detector) {
warning("Sound initialisation failed");
_mixer->setVolume(ConfMan.getInt("sfx_volume"));
+ _mixer->setMusicVolume(ConfMan.getInt("music_volume"));
_floppyIntro = ConfMan.getBool("alt_intro");
_skyDisk = new Disk(_gameDataPath);