aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2009-12-07 12:45:23 -0800
committerChris Robinson <[email protected]>2009-12-07 12:45:23 -0800
commit5170e251f941496f2e07b5fefef9dcf481e0ad4f (patch)
treec18eadfdd3e4a2315477c9d21c67e4c0a70a481d
parent4697e946d3ac61c05512d685a97e4632a392c162 (diff)
Use the correct wet filter history offset
-rw-r--r--Alc/ALu.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Alc/ALu.c b/Alc/ALu.c
index 22531d13..728de0ca 100644
--- a/Alc/ALu.c
+++ b/Alc/ALu.c
@@ -1106,7 +1106,7 @@ another_source:
DryBuffer[j][out] += outsamp*Matrix[chans[i]][out]; \
for(out = 0;out < MAX_SENDS;out++) \
{ \
- outsamp = lpFilter1P(WetFilter[out], chans[out], value); \
+ outsamp = lpFilter1P(WetFilter[out], chans[i], value); \
WetBuffer[out][j] += outsamp*WetSend[out]*scaler; \
} \
} \