From 39caf7e51bc4b963ee27c44d7ed39296bcd9bcb8 Mon Sep 17 00:00:00 2001 From: Imbris Date: Sun, 19 May 2019 17:50:20 -0400 Subject: [PATCH] Don't allow negative volumes Former-commit-id: 35a52235fa4194d40ffc0d8d3243d0653dcca0a5 --- voxygen/src/audio/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/voxygen/src/audio/mod.rs b/voxygen/src/audio/mod.rs index 26a6c07187..e6c85494ee 100644 --- a/voxygen/src/audio/mod.rs +++ b/voxygen/src/audio/mod.rs @@ -78,6 +78,6 @@ impl AudioFrontend { } pub fn set_volume(&mut self, volume: f32) { - self.stream.set_volume(volume.min(1.0)) + self.stream.set_volume(volume.min(1.0).max(0.0)) } }