diff options
author | Chris Robinson <[email protected]> | 2011-08-16 18:40:21 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2011-08-16 18:40:21 -0700 |
commit | 9f5bf5f9307e86c28ff19a61d422c7b2fe389fdc (patch) | |
tree | af769fafe6bdb9a8f470862a1b8b4ab01cbbf4ea /Alc/alcReverb.c | |
parent | 04dad28228a694e681d722826615245466a3aa16 (diff) |
Rename minF/maxF/clampF to minf/maxf/clampf for consistency
Diffstat (limited to 'Alc/alcReverb.c')
-rw-r--r-- | Alc/alcReverb.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Alc/alcReverb.c b/Alc/alcReverb.c index e4fb4ebf..d4e5d318 100644 --- a/Alc/alcReverb.c +++ b/Alc/alcReverb.c @@ -391,7 +391,7 @@ static ALfloat CalcLimitedHfRatio(ALfloat hfRatio, ALfloat airAbsorptionGainHF, /* Using the limit calculated above, apply the upper bound to the HF * ratio. Also need to limit the result to a minimum of 0.1, just like the * HF ratio parameter. */ - return clampF(limitRatio, 0.1f, hfRatio); + return clampf(limitRatio, 0.1f, hfRatio); } // Calculate the coefficient for a HF (and eventually LF) decay damping @@ -415,7 +415,7 @@ static __inline ALfloat CalcDampingCoeff(ALfloat hfRatio, ALfloat length, ALfloa // Very low decay times will produce minimal output, so apply an // upper bound to the coefficient. - coeff = minF(coeff, 0.98f); + coeff = minf(coeff, 0.98f); } return coeff; } |