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 /OpenAL32/alAuxEffectSlot.c | |
parent | 0dc5837b827813a2c48b5a099e62da65c0e5876e (diff) |
Remove the effect slot parameter from the effect process method
Diffstat (limited to 'OpenAL32/alAuxEffectSlot.c')
-rw-r--r-- | OpenAL32/alAuxEffectSlot.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/OpenAL32/alAuxEffectSlot.c b/OpenAL32/alAuxEffectSlot.c index 4596996b..33831d29 100644 --- a/OpenAL32/alAuxEffectSlot.c +++ b/OpenAL32/alAuxEffectSlot.c @@ -452,10 +452,9 @@ static ALvoid NoneUpdate(ALeffectState *State, ALCcontext *Context, const ALeffe (void)Context; (void)Slot; } -static ALvoid NoneProcess(ALeffectState *State, const ALeffectslot *Slot, ALuint SamplesToDo, const ALfloat *SamplesIn, ALfloat (*SamplesOut)[MAXCHANNELS]) +static ALvoid NoneProcess(ALeffectState *State, ALuint SamplesToDo, const ALfloat *SamplesIn, ALfloat (*SamplesOut)[MAXCHANNELS]) { (void)State; - (void)Slot; (void)SamplesToDo; (void)SamplesIn; (void)SamplesOut; |