aboutsummaryrefslogtreecommitdiffstats
path: root/Alc/alcReverb.c
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2011-02-07 23:58:40 -0800
committerChris Robinson <[email protected]>2011-02-07 23:58:40 -0800
commit13397feccfa46a0924df83e261a35946ae8eaa9b (patch)
tree074fbf257249dfe499f20b77d27d217be48b348a /Alc/alcReverb.c
parent57b05fb6d462b2a3c27b7beab262d5abc207f26e (diff)
Don't inline CalcLimitedHfRatio
Diffstat (limited to 'Alc/alcReverb.c')
-rw-r--r--Alc/alcReverb.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Alc/alcReverb.c b/Alc/alcReverb.c
index d4a03cf3..e48b3b9c 100644
--- a/Alc/alcReverb.c
+++ b/Alc/alcReverb.c
@@ -369,7 +369,7 @@ static __inline ALvoid CalcMatrixCoeffs(ALfloat diffusion, ALfloat *x, ALfloat *
// Calculate the limited HF ratio for use with the late reverb low-pass
// filters.
-static __inline ALfloat CalcLimitedHfRatio(ALfloat hfRatio, ALfloat airAbsorptionGainHF, ALfloat decayTime)
+static ALfloat CalcLimitedHfRatio(ALfloat hfRatio, ALfloat airAbsorptionGainHF, ALfloat decayTime)
{
ALfloat limitRatio;