diff options
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 589be6e3..f194d7ab 100644 --- a/Alc/alcReverb.c +++ b/Alc/alcReverb.c @@ -781,7 +781,7 @@ static __inline ALfloat CalcDecayCoeff(ALfloat length, ALfloat decayTime) // reaches -60 dB. static __inline ALfloat CalcDecayLength(ALfloat coeff, ALfloat decayTime) { - return aluLog10(coeff) * decayTime / aluLog10(0.001)/*-60 dB*/; + return aluLog10(coeff) * decayTime / aluLog10(0.001f)/*-60 dB*/; } // Calculate the high frequency parameter for the I3DL2 coefficient |