tici: set volume at 90%

This commit is contained in:
Adeeb Shihadeh 2020-09-18 14:53:41 -07:00
parent b3fad609d9
commit 002e0065cb

View file

@ -10,6 +10,7 @@ QtSound::QtSound() {
bool QtSound::play(AudibleAlert alert) {
sounds[alert].setLoopCount(sound_map[alert].second);
sounds[alert].setVolume(0.9);
sounds[alert].play();
return true;
}