diff options
author | Chris Robinson <[email protected]> | 2012-10-14 11:04:36 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2012-10-14 11:04:36 -0700 |
commit | 3240894cd5ee4d3bae6798b6d480ef2dfacc403a (patch) | |
tree | f5fefe05c181e2854e6b94fab787173bdf136f86 /Alc/mixer_c.c | |
parent | 0b679167c9147fc92aad32487c03dffb5ce6817f (diff) |
Remove the now-unused Source parameter from the DryMix methods
Diffstat (limited to 'Alc/mixer_c.c')
-rw-r--r-- | Alc/mixer_c.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Alc/mixer_c.c b/Alc/mixer_c.c index 027c4e37..39bf260c 100644 --- a/Alc/mixer_c.c +++ b/Alc/mixer_c.c @@ -83,7 +83,7 @@ static __inline void ApplyCoeffs(ALuint Offset, ALfloat (*RESTRICT Values)[2], #undef SUFFIX -void MixDirect_C(ALsource *Source, ALCdevice *Device, DirectParams *params, +void MixDirect_C(ALCdevice *Device, DirectParams *params, const ALfloat *RESTRICT data, ALuint srcchan, ALuint OutPos, ALuint SamplesToDo, ALuint BufferSize) { @@ -93,7 +93,6 @@ void MixDirect_C(ALsource *Source, ALCdevice *Device, DirectParams *params, ALfloat DrySend; ALuint pos; ALuint c; - (void)Source; for(c = 0;c < MaxChannels;c++) { |