diff options
author | Chris Robinson <[email protected]> | 2012-10-14 11:29:28 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2012-10-14 11:29:28 -0700 |
commit | f0d27e5f9198e706ab024cb379fbb19acc46ec86 (patch) | |
tree | 5b26d2cd59df48825bcf14aa1d11915cc71c10f7 /Alc/mixer_c.c | |
parent | a852669dcebf7ff80a0698ca8afe6c8400480202 (diff) |
Remove the unused Device parameter
Diffstat (limited to 'Alc/mixer_c.c')
-rw-r--r-- | Alc/mixer_c.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/Alc/mixer_c.c b/Alc/mixer_c.c index a0a7b4d0..9283c8e9 100644 --- a/Alc/mixer_c.c +++ b/Alc/mixer_c.c @@ -83,8 +83,7 @@ static __inline void ApplyCoeffs(ALuint Offset, ALfloat (*RESTRICT Values)[2], #undef SUFFIX -void MixDirect_C(ALCdevice *Device, DirectParams *params, - const ALfloat *RESTRICT data, ALuint srcchan, +void MixDirect_C(DirectParams *params, const ALfloat *RESTRICT data, ALuint srcchan, ALuint OutPos, ALuint SamplesToDo, ALuint BufferSize) { ALfloat (*RESTRICT DryBuffer)[BUFFERSIZE] = params->OutBuffer; @@ -93,7 +92,6 @@ void MixDirect_C(ALCdevice *Device, DirectParams *params, ALfloat DrySend; ALuint pos; ALuint c; - (void)Device; for(c = 0;c < MaxChannels;c++) { |