From 11a4fa606784edadd95a158084f8b04aa9ee3988 Mon Sep 17 00:00:00 2001 From: Elyse Date: Sat, 30 Oct 2021 21:38:12 -0500 Subject: [PATCH] SoundPlayer: Allow volume output of up to 150% Previously the volume slider could go up to 150% but the real output volume stayed the same between 100% and 150%. --- Userland/Applications/SoundPlayer/Player.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Userland/Applications/SoundPlayer/Player.cpp b/Userland/Applications/SoundPlayer/Player.cpp index 70b6516994..e4f31aa648 100644 --- a/Userland/Applications/SoundPlayer/Player.cpp +++ b/Userland/Applications/SoundPlayer/Player.cpp @@ -87,7 +87,7 @@ void Player::set_loop_mode(LoopMode mode) void Player::set_volume(double volume) { - m_volume = clamp(volume, 0, 1.0); + m_volume = clamp(volume, 0, 1.5); m_audio_client_connection.set_self_volume(m_volume); volume_changed(m_volume); }