sfx_volume and music_volume were swapped

svn-id: r10761
This commit is contained in:
Max Horn 2003-10-12 17:25:27 +00:00
parent 8226fbc147
commit 7747ef28d3

View File

@ -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);