Increase the directional change sensitivity for the HRTF delta

This commit is contained in:
Chris Robinson
2012-07-20 14:38:49 -07:00
parent e32e2fd6b8
commit 7ac9944bb3
+1 -1
View File
@@ -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);
}