diff options
author | Chris Robinson <[email protected]> | 2011-09-30 23:07:15 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2011-09-30 23:07:15 -0700 |
commit | a7bbf7a741a76f01059ca399ad27f1f4bcf665a1 (patch) | |
tree | f54d0d221dd1d2df08d44e63da978ccc244833ee /Alc/alcReverb.c | |
parent | bfa782f3296d94c46fea188f78cbf0e3799ee96b (diff) |
Rename LOWPASSFREQCUTOFF to LOWPASSFREQREF
Diffstat (limited to 'Alc/alcReverb.c')
-rw-r--r-- | Alc/alcReverb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Alc/alcReverb.c b/Alc/alcReverb.c index 52fb86da..c6d0f33c 100644 --- a/Alc/alcReverb.c +++ b/Alc/alcReverb.c @@ -1112,7 +1112,7 @@ static ALvoid ReverbUpdate(ALeffectState *effect, ALCcontext *Context, const ALe // Calculate the master low-pass filter (from the master effect HF gain). if(isEAX) cw = CalcI3DL2HFreq(Slot->effect.Reverb.HFReference, frequency); - else cw = CalcI3DL2HFreq(LOWPASSFREQCUTOFF, frequency); + else cw = CalcI3DL2HFreq(LOWPASSFREQREF, frequency); // This is done with 2 chained 1-pole filters, so no need to square g. State->LpFilter.coeff = lpCoeffCalc(Slot->effect.Reverb.GainHF, cw); |