mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-19 21:53:51 +00:00
copy&paste mistake
This commit is contained in:
parent
189b044392
commit
cbe89f7e32
1 changed files with 2 additions and 2 deletions
|
@ -65,9 +65,9 @@ namespace MWSound
|
||||||
mMusicVolume = Settings::Manager::getFloat("music volume", "Sound");
|
mMusicVolume = Settings::Manager::getFloat("music volume", "Sound");
|
||||||
mMusicVolume = std::min(std::max(mMusicVolume, 0.0f), 1.0f);
|
mMusicVolume = std::min(std::max(mMusicVolume, 0.0f), 1.0f);
|
||||||
mVoiceVolume = Settings::Manager::getFloat("voice volume", "Sound");
|
mVoiceVolume = Settings::Manager::getFloat("voice volume", "Sound");
|
||||||
mVoiceVolume = std::min(std::max(mMusicVolume, 0.0f), 1.0f);
|
mVoiceVolume = std::min(std::max(mVoiceVolume, 0.0f), 1.0f);
|
||||||
mFootstepsVolume = Settings::Manager::getFloat("footsteps volume", "Sound");
|
mFootstepsVolume = Settings::Manager::getFloat("footsteps volume", "Sound");
|
||||||
mFootstepsVolume = std::min(std::max(mMusicVolume, 0.0f), 1.0f);
|
mFootstepsVolume = std::min(std::max(mFootstepsVolume, 0.0f), 1.0f);
|
||||||
|
|
||||||
std::cout << "Sound output: " << SOUND_OUT << std::endl;
|
std::cout << "Sound output: " << SOUND_OUT << std::endl;
|
||||||
std::cout << "Sound decoder: " << SOUND_IN << std::endl;
|
std::cout << "Sound decoder: " << SOUND_IN << std::endl;
|
||||||
|
|
Loading…
Reference in a new issue