aboutsummaryrefslogtreecommitdiffstats
path: root/Alc/ALu.c
diff options
context:
space:
mode:
Diffstat (limited to 'Alc/ALu.c')
-rw-r--r--Alc/ALu.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/Alc/ALu.c b/Alc/ALu.c
index 2d1ef59c..bb77d598 100644
--- a/Alc/ALu.c
+++ b/Alc/ALu.c
@@ -227,10 +227,6 @@ static ALvoid CalcSourceParams(ALCcontext *ALContext, ALsource *ALSource,
HeadRelative = ALSource->bHeadRelative;
OuterGainHF = ALSource->OuterGainHF;
- //Set working variables
- DryMix = (ALfloat)(1.0f);
- WetMix = (ALfloat)(0.0f);
-
//Only apply 3D calculations for mono buffers
if(isMono != AL_FALSE)
{
@@ -293,6 +289,7 @@ static ALvoid CalcSourceParams(ALCcontext *ALContext, ALsource *ALSource,
// Source Gain + Attenuation
DryMix = SourceVolume * flAttenuation;
+ WetMix = SourceVolume * 0.0f;
// Clamp to Min/Max Gain
DryMix = __min(DryMix,MaxVolume);