aboutsummaryrefslogtreecommitdiffstats
path: root/Alc/alcEcho.c
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2011-09-30 23:07:15 -0700
committerChris Robinson <[email protected]>2011-09-30 23:07:15 -0700
commita7bbf7a741a76f01059ca399ad27f1f4bcf665a1 (patch)
treef54d0d221dd1d2df08d44e63da978ccc244833ee /Alc/alcEcho.c
parentbfa782f3296d94c46fea188f78cbf0e3799ee96b (diff)
Rename LOWPASSFREQCUTOFF to LOWPASSFREQREF
Diffstat (limited to 'Alc/alcEcho.c')
-rw-r--r--Alc/alcEcho.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Alc/alcEcho.c b/Alc/alcEcho.c
index 1d2afcf0..9bfb19b3 100644
--- a/Alc/alcEcho.c
+++ b/Alc/alcEcho.c
@@ -111,7 +111,7 @@ static ALvoid EchoUpdate(ALeffectState *effect, ALCcontext *Context, const ALeff
state->FeedGain = Slot->effect.Echo.Feedback;
- cw = aluCos(F_PI*2.0f * LOWPASSFREQCUTOFF / frequency);
+ cw = aluCos(F_PI*2.0f * LOWPASSFREQREF / frequency);
g = 1.0f - Slot->effect.Echo.Damping;
state->iirFilter.coeff = lpCoeffCalc(g, cw);