From 6aabc837a967b15993c5a9f3da63164f451811c3 Mon Sep 17 00:00:00 2001 From: Chris Robinson Date: Tue, 18 Dec 2007 17:21:13 -0800 Subject: Fix initial WetMix setup --- Alc/ALu.c | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) (limited to 'Alc/ALu.c') 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); -- cgit v1.2.3