From 91278608c5d342a9c4322bd6296d0eba9eb3af4c Mon Sep 17 00:00:00 2001 From: Chris Robinson Date: Tue, 3 Aug 2010 01:44:52 -0700 Subject: [PATCH] Add some spacing --- Alc/ALu.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Alc/ALu.c b/Alc/ALu.c index 9464895b..7684a86f 100644 --- a/Alc/ALu.c +++ b/Alc/ALu.c @@ -840,10 +840,12 @@ static void MixSource(ALsource *ALSource, ALCcontext *ALContext, value = (resampler)(Data[DataPosInt*Channels + i], \ Data[(DataPosInt+1)*Channels + i], \ DataPosFrac); \ + \ outsamp = lpFilter2P(DryFilter, chans[i]*2, value) * dupscaler; \ DryBuffer[j][chans[i]] += outsamp*DrySend[chans[i]]; \ DryBuffer[j][chans2[i*2+0]] += outsamp*DrySend[chans2[i*2+0]]; \ DryBuffer[j][chans2[i*2+1]] += outsamp*DrySend[chans2[i*2+1]]; \ + \ for(out = 0;out < MAX_SENDS;out++) \ { \ outsamp = lpFilter1P(WetFilter[out], chans[i], value); \ @@ -892,8 +894,10 @@ static void MixSource(ALsource *ALSource, ALCcontext *ALContext, value = (resampler)(Data[DataPosInt*Channels + i], \ Data[(DataPosInt+1)*Channels + i], \ DataPosFrac); \ + \ outsamp = lpFilter2P(DryFilter, chans[i]*2, value); \ DryBuffer[j][chans[i]] += outsamp*DrySend[chans[i]]; \ + \ for(out = 0;out < MAX_SENDS;out++) \ { \ outsamp = lpFilter1P(WetFilter[out], chans[i], value); \