[audio_core] Fix audio reverb effect #2646
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "reverb-fix"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
This fixes the audio reverb effect that was causing loud noise in some games and on some platforms.
[audio_core] Fix reverb effectto [audio_core] Fix audio reverb effect@ -191,8 +191,6 @@ static void InitializeReverbEffect(const ReverbInfo::ParameterVersion2& params,
const auto center_delay_time{(5 * delay).to_uint_floor()};
state.center_delay_line.Initialize(center_delay_time, 1.0f);
UpdateReverbEffectParameter(params, state);
shouldn't this just be in a
#ifndef __unix__
This block of code controls when the effect should be updated:
16865d6764
to4434e1bb90