aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Alc/hrtf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Alc/hrtf.c b/Alc/hrtf.c
index cd413ccd..735e53dc 100644
--- a/Alc/hrtf.c
+++ b/Alc/hrtf.c
@@ -102,7 +102,7 @@ ALfloat CalcHrtfDelta(ALfloat oldGain, ALfloat newGain, const ALfloat olddir[3],
// Use the largest of the two changes for the delta factor, and apply a
// significance shaping function to it.
- change = maxf(angleChange, gainChange) * 2.0f;
+ change = maxf(angleChange * 25.0f, gainChange) * 2.0f;
return minf(change, 1.0f);
}