aboutsummaryrefslogtreecommitdiffstats
path: root/Alc
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2012-07-20 14:38:49 -0700
committerChris Robinson <[email protected]>2012-07-20 14:38:49 -0700
commit7ac9944bb3638845a168a99f4c302822932853b6 (patch)
treeff4d7c6e6c5db6c3075bb2b007b02288135f1368 /Alc
parente32e2fd6b84c24ea465da92fee79482914632eda (diff)
Increase the directional change sensitivity for the HRTF delta
Diffstat (limited to 'Alc')
-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);
}