diff options
author | Chris Robinson <[email protected]> | 2011-09-12 00:44:52 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2011-09-12 00:44:52 -0700 |
commit | 0ceea27b44919b406e4ef7b89b13a1bbf71e10eb (patch) | |
tree | 412d09eca8425f18e0a79e5f844fe7ba9d580d13 /Alc/alcDedicated.c | |
parent | 0dc5837b827813a2c48b5a099e62da65c0e5876e (diff) |
Remove the effect slot parameter from the effect process method
Diffstat (limited to 'Alc/alcDedicated.c')
-rw-r--r-- | Alc/alcDedicated.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Alc/alcDedicated.c b/Alc/alcDedicated.c index 307d60ef..a371bb20 100644 --- a/Alc/alcDedicated.c +++ b/Alc/alcDedicated.c @@ -75,12 +75,11 @@ static ALvoid DedicatedUpdate(ALeffectState *effect, ALCcontext *Context, const state->gains[LFE] = Gain; } -static ALvoid DedicatedProcess(ALeffectState *effect, const ALeffectslot *Slot, ALuint SamplesToDo, const ALfloat *SamplesIn, ALfloat (*SamplesOut)[MAXCHANNELS]) +static ALvoid DedicatedProcess(ALeffectState *effect, ALuint SamplesToDo, const ALfloat *SamplesIn, ALfloat (*SamplesOut)[MAXCHANNELS]) { ALdedicatedState *state = (ALdedicatedState*)effect; const ALfloat *gains = state->gains; ALuint i, s; - (void)Slot; for(i = 0;i < SamplesToDo;i++) { |