aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2012-03-12 18:29:46 -0700
committerChris Robinson <[email protected]>2012-03-12 18:29:46 -0700
commit560f34e3df40762ae7e800c6775ebd5fd567a0f7 (patch)
tree6ef69eeba15cdc5de91e2f5bddff228ceda05c51
parent335232207dce93e4f74e2d03230dc67626ebd347 (diff)
Channel angle is already in radians, not degrees
-rw-r--r--Alc/ALu.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Alc/ALu.c b/Alc/ALu.c
index 365aa55d..f19a78ef 100644
--- a/Alc/ALu.c
+++ b/Alc/ALu.c
@@ -282,7 +282,7 @@ ALvoid CalcNonAttnSourceParams(ALsource *ALSource, const ALCcontext *ALContext)
/* Get the static HRIR coefficients and delays for this
* channel. */
GetLerpedHrtfCoeffs(Device->Hrtf,
- 0.0f, F_PI/180.0f * chans[c].angle,
+ 0.0f, chans[c].angle,
DryGain*ListenerGain,
ALSource->Params.HrtfCoeffs[c],
ALSource->Params.HrtfDelay[c]);