Merge pull request #2059 from FearlessTobi/port-4601

Port citra-emu/citra#4601: "dsp_interface: fix sound being played while volume is 0"
This commit is contained in:
bunnei 2019-01-26 21:21:04 -05:00 committed by GitHub
commit 6957bac03c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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);
}