HOPKINS: Added missing flush of changed sound settings to disk

This commit is contained in:
Paul Gilbert 2012-11-11 20:00:57 +11:00
parent 1844e4faa2
commit 4def58832d

View File

@ -733,6 +733,8 @@ void SoundManager::updateScummVMSoundSettings() {
ConfMan.setInt("music_volume", MUSICVOL * 255 / 16);
ConfMan.setInt("sfx_volume", SOUNDVOL * 255 / 16);
ConfMan.setInt("speech_volume", VOICEVOL * 255 / 16);
ConfMan.flushToDisk();
}
} // End of namespace Hopkins