summaryrefslogtreecommitdiffstats
path: root/src/audio_core/stream.cpp
diff options
context:
space:
mode:
authorfearlessTobi <thm.frey@gmail.com>2019-01-26 14:53:58 +0100
committerfearlessTobi <thm.frey@gmail.com>2019-01-26 22:42:09 +0100
commit7185d90a5376fb1642abe9491aa412f9f6b49003 (patch)
treefa8b8426d50594af177ce0c9d955b1415066b966 /src/audio_core/stream.cpp
parentMerge pull request #1927 from ReinUsesLisp/shader-ir (diff)
downloadyuzu-7185d90a5376fb1642abe9491aa412f9f6b49003.tar
yuzu-7185d90a5376fb1642abe9491aa412f9f6b49003.tar.gz
yuzu-7185d90a5376fb1642abe9491aa412f9f6b49003.tar.bz2
yuzu-7185d90a5376fb1642abe9491aa412f9f6b49003.tar.lz
yuzu-7185d90a5376fb1642abe9491aa412f9f6b49003.tar.xz
yuzu-7185d90a5376fb1642abe9491aa412f9f6b49003.tar.zst
yuzu-7185d90a5376fb1642abe9491aa412f9f6b49003.zip
Diffstat (limited to '')
-rw-r--r--src/audio_core/stream.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/audio_core/stream.cpp b/src/audio_core/stream.cpp
index 874673c4e..4ce2d374e 100644
--- a/src/audio_core/stream.cpp
+++ b/src/audio_core/stream.cpp
@@ -68,7 +68,7 @@ static void VolumeAdjustSamples(std::vector<s16>& samples) {
}
// Implementation of a volume slider with a dynamic range of 60 dB
- const float volume_scale_factor{std::exp(6.90775f * volume) * 0.001f};
+ const float volume_scale_factor = volume == 0 ? 0 : std::exp(6.90775f * volume) * 0.001f;
for (auto& sample : samples) {
sample = static_cast<s16>(sample * volume_scale_factor);
}