qt_sound: lower volume

old-commit-hash: 614808f384700730a1ca805a6ba2abf0662e7076
This commit is contained in:
Adeeb Shihadeh
2021-03-08 22:10:48 -08:00
parent 926e0dfca6
commit 96b6f66472
+1 -1
View File
@@ -11,7 +11,7 @@ QtSound::QtSound() {
bool QtSound::play(AudibleAlert alert) {
int loops = sound_map[alert].second> - 1 ? sound_map[alert].second : QSoundEffect::Infinite;
sounds[alert].setLoopCount(loops);
sounds[alert].setVolume(0.7);
sounds[alert].setVolume(0.45);
sounds[alert].play();
return true;
}