diff options
author | Chris Robinson <[email protected]> | 2012-07-20 14:38:49 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2012-07-20 14:38:49 -0700 |
commit | 7ac9944bb3638845a168a99f4c302822932853b6 (patch) | |
tree | ff4d7c6e6c5db6c3075bb2b007b02288135f1368 /Alc | |
parent | e32e2fd6b84c24ea465da92fee79482914632eda (diff) |
Increase the directional change sensitivity for the HRTF delta
Diffstat (limited to 'Alc')
-rw-r--r-- | Alc/hrtf.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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); } |