Don't add the dry gain to the mixing matrix

This commit is contained in:
Chris Robinson
2012-10-13 11:10:58 -07:00
parent 9bd3b88a58
commit 5c70e6b9ab
+1 -1
View File
@@ -352,7 +352,7 @@ ALvoid CalcNonAttnSourceParams(ALsource *ALSource, const ALCcontext *ALContext)
enum Channel chan = Device->Speaker2Chan[i];
if(chan == chans[c].channel)
{
SrcMatrix[c][chan] += DryGain;
SrcMatrix[c][chan] = DryGain;
break;
}
}