aboutsummaryrefslogtreecommitdiffstats
path: root/Alc/ALu.c
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2012-10-10 04:08:35 -0700
committerChris Robinson <[email protected]>2012-10-10 04:08:35 -0700
commit99fcd6f816c125ebb45905f4adf7a423e860e561 (patch)
treea8ec612bc77e86585f1697530482666f5ff0b0ad /Alc/ALu.c
parent513c6db0d5df12cd36d0fff6e3d013248bc39732 (diff)
Properly scale wide-stereo sources
Diffstat (limited to 'Alc/ALu.c')
-rw-r--r--Alc/ALu.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Alc/ALu.c b/Alc/ALu.c
index 326766c5..5c897927 100644
--- a/Alc/ALu.c
+++ b/Alc/ALu.c
@@ -339,7 +339,7 @@ ALvoid CalcNonAttnSourceParams(ALsource *ALSource, const ALCcontext *ALContext)
}
else
{
- DryGain *= lerp(1.0f, 1.0f/sqrtf(Device->NumChan), hwidth/(F_PI*2.0f));
+ DryGain *= lerp(1.0f, 1.0f/sqrtf(Device->NumChan), hwidth/F_PI);
for(c = 0;c < num_channels;c++)
{
/* Special-case LFE */