diff options
author | Chris Robinson <[email protected]> | 2014-03-23 16:28:55 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2014-03-23 16:28:55 -0700 |
commit | 72986882f549275c6c946b325a9c75b1547f37f1 (patch) | |
tree | b8c7cf332193cf293f9f5c0e8a9c85c99d00d060 /Alc/mixer.c | |
parent | a25260ea8a63629b0daa03a7beb9b72b53588d2b (diff) |
Remove the click removal buffers for auxiliary effect slots
Diffstat (limited to 'Alc/mixer.c')
-rw-r--r-- | Alc/mixer.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Alc/mixer.c b/Alc/mixer.c index ae6b324f..122476e5 100644 --- a/Alc/mixer.c +++ b/Alc/mixer.c @@ -342,8 +342,7 @@ ALvoid MixSource(ALactivesource *src, ALCdevice *Device, ALuint SamplesToDo) DoFilter(&sendparms->LpFilter[chan], SrcData, ResampledData, DstBufferSize); - src->WetMix(sendparms, SrcData, OutPos, - SamplesToDo, DstBufferSize); + src->WetMix(sendparms, SrcData, OutPos, DstBufferSize); } } /* Update positions */ |