[Scummvm-cvs-logs] CVS: scummvm/scumm scummvm.cpp,2.433,2.434

Max Horn fingolfin at users.sourceforge.net
Sun Oct 12 10:26:03 CEST 2003


Update of /cvsroot/scummvm/scummvm/scumm
In directory sc8-pr-cvs1:/tmp/cvs-serv15130

Modified Files:
	scummvm.cpp 
Log Message:
sfx_volume and music_volume were swapped

Index: scummvm.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/scumm/scummvm.cpp,v
retrieving revision 2.433
retrieving revision 2.434
diff -u -d -r2.433 -r2.434
--- scummvm.cpp	12 Oct 2003 13:44:37 -0000	2.433
+++ scummvm.cpp	12 Oct 2003 17:25:27 -0000	2.434
@@ -635,8 +635,8 @@
 	_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);





More information about the Scummvm-git-logs mailing list