diff options
author | Chris Robinson <[email protected]> | 2009-12-07 12:45:23 -0800 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2009-12-07 12:45:23 -0800 |
commit | 5170e251f941496f2e07b5fefef9dcf481e0ad4f (patch) | |
tree | c18eadfdd3e4a2315477c9d21c67e4c0a70a481d | |
parent | 4697e946d3ac61c05512d685a97e4632a392c162 (diff) |
Use the correct wet filter history offset
-rw-r--r-- | Alc/ALu.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; \ } \ } \ |