aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--scumm/scummvm.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/scumm/scummvm.cpp b/scumm/scummvm.cpp
index aa1e9fa721..9bffb621c6 100644
--- a/scumm/scummvm.cpp
+++ b/scumm/scummvm.cpp
@@ -635,8 +635,8 @@ ScummEngine::ScummEngine(GameDetector *detector, OSystem *syst)
_sound = new Sound(this);
_sound->_sound_volume_master = ConfMan.getInt("master_volume");
- _sound->_sound_volume_sfx = ConfMan.getInt("music_volume");
- _sound->_sound_volume_music = ConfMan.getInt("sfx_volume");
+ _sound->_sound_volume_sfx = ConfMan.getInt("sfx_volume");
+ _sound->_sound_volume_music = ConfMan.getInt("music_volume");
/* Initialize backend */
syst->init_size(_screenWidth, _screenHeight);