aboutsummaryrefslogtreecommitdiffstats
path: root/Alc/effects/echo.c
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2017-03-16 11:25:28 -0700
committerChris Robinson <[email protected]>2017-03-16 11:25:28 -0700
commit8f5cab56080fedd5002a7141aa796d371340ab0a (patch)
tree86e1c31a1d55c575c5cf1a44bc2faa099e3c05f7 /Alc/effects/echo.c
parent32d521d79cf9baeb3cdbec69c8374ae5776d9052 (diff)
Increase the filter slope to -12dB/octave
Diffstat (limited to 'Alc/effects/echo.c')
-rw-r--r--Alc/effects/echo.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Alc/effects/echo.c b/Alc/effects/echo.c
index 07eba9eb..4293674f 100644
--- a/Alc/effects/echo.c
+++ b/Alc/effects/echo.c
@@ -129,7 +129,7 @@ static ALvoid ALechoState_update(ALechoState *state, const ALCdevice *Device, co
gain = minf(1.0f - props->Echo.Damping, 0.0625f); /* Limit -24dB */
ALfilterState_setParams(&state->Filter, ALfilterType_HighShelf,
gain, LOWPASSFREQREF/frequency,
- calc_rcpQ_from_slope(gain, 0.75f));
+ calc_rcpQ_from_slope(gain, 1.0f));
gain = Slot->Params.Gain;