aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Alc/effects/reverb.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/Alc/effects/reverb.c b/Alc/effects/reverb.c
index 39daff53..2c881512 100644
--- a/Alc/effects/reverb.c
+++ b/Alc/effects/reverb.c
@@ -992,8 +992,8 @@ static void CalcT60DampingCoeffs(const ALfloat length, const ALfloat lfDecayTime
{
if(mfGain < hfGain)
{
- double hg = mfGain / lfGain;
- double lg = mfGain / hfGain;
+ ALfloat hg = mfGain / lfGain;
+ ALfloat lg = mfGain / hfGain;
CalcHighShelfCoeffs(hg, lfW, lfcoeffs);
CalcLowShelfCoeffs(lg, hfW, hfcoeffs);