summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorgerman77 <juangerman-13@hotmail.com>2022-01-16 03:28:17 +0100
committergerman77 <juangerman-13@hotmail.com>2022-01-16 03:28:37 +0100
commit850896a52bdc2ff8a555d6e702eb5638c30a084e (patch)
tree1ed004d413a174d4fd09e87565843ecf586fbfcc
parentyuzu: Add volume up/down hotkeys (diff)
downloadyuzu-850896a52bdc2ff8a555d6e702eb5638c30a084e.tar
yuzu-850896a52bdc2ff8a555d6e702eb5638c30a084e.tar.gz
yuzu-850896a52bdc2ff8a555d6e702eb5638c30a084e.tar.bz2
yuzu-850896a52bdc2ff8a555d6e702eb5638c30a084e.tar.lz
yuzu-850896a52bdc2ff8a555d6e702eb5638c30a084e.tar.xz
yuzu-850896a52bdc2ff8a555d6e702eb5638c30a084e.tar.zst
yuzu-850896a52bdc2ff8a555d6e702eb5638c30a084e.zip
-rw-r--r--src/audio_core/stream.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/audio_core/stream.cpp b/src/audio_core/stream.cpp
index 5a30f55a7..0abc989b2 100644
--- a/src/audio_core/stream.cpp
+++ b/src/audio_core/stream.cpp
@@ -79,8 +79,8 @@ static void VolumeAdjustSamples(std::vector<s16>& samples, float game_volume) {
return;
}
- // Implementation of a volume slider with a dynamic range of 60 dB
- const float volume_scale_factor = volume == 0 ? 0 : std::exp(6.90775f * volume) * 0.001f;
+ // Perceived volume is not the same as the volume level
+ const float volume_scale_factor = (0.85f * ((volume * volume) - volume)) + volume;
for (auto& sample : samples) {
sample = static_cast<s16>(sample * volume_scale_factor);
}