From 002e0065cb7a57b03eddc346ef6986de1be0532c Mon Sep 17 00:00:00 2001 From: Adeeb Shihadeh Date: Fri, 18 Sep 2020 14:53:41 -0700 Subject: [PATCH] tici: set volume at 90% --- selfdrive/ui/qt/qt_sound.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/selfdrive/ui/qt/qt_sound.cc b/selfdrive/ui/qt/qt_sound.cc index c86794b164..76842c67ef 100644 --- a/selfdrive/ui/qt/qt_sound.cc +++ b/selfdrive/ui/qt/qt_sound.cc @@ -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; }