Add a lost comment

This commit is contained in:
Chris Robinson 2011-07-18 17:44:37 -07:00
parent 55b893c784
commit 0ae9638aa5

View File

@ -106,7 +106,8 @@ ALfloat CalcHrtfDelta(ALfloat oldGain, ALfloat newGain, const ALfloat olddir[3],
}
// Use the largest of the two changes for the delta factor.
// Use the largest of the two changes for the delta factor, and apply a
// significance shaping function to it.
delta = __max(gainChange, angleChange) * 2.0f;
return __min(delta, 1.0f);
}