aboutsummaryrefslogtreecommitdiffstats
path: root/Alc/mixer.c
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2012-09-27 02:46:15 -0700
committerChris Robinson <[email protected]>2012-09-27 02:46:15 -0700
commit41b2c2f3bbd3a36be7272ceb7711a9bf97042e26 (patch)
tree7bc30e74fef89de90c9e34ffb55fa19b05367e07 /Alc/mixer.c
parent68faef5b84c06c997e65027656f659e16671ba3a (diff)
Remove an unneeded parameter from the resampler
Diffstat (limited to 'Alc/mixer.c')
-rw-r--r--Alc/mixer.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Alc/mixer.c b/Alc/mixer.c
index c3ed5d64..4658b33b 100644
--- a/Alc/mixer.c
+++ b/Alc/mixer.c
@@ -323,7 +323,7 @@ ALvoid MixSource(ALsource *Source, ALCdevice *Device, ALuint SamplesToDo)
/* Now resample, then filter and mix to the appropriate outputs. */
Source->Params.Resample(&SrcData[BufferPrePadding], DataPosFrac,
- increment, 1, ResampledData, DstBufferSize);
+ increment, ResampledData, DstBufferSize);
{
DirectParams *directparms = &Source->Params.Direct;