diff options
author | Chris Robinson <[email protected]> | 2009-04-11 17:04:55 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2009-04-11 17:04:55 -0700 |
commit | 1c540181116a875f708890bc9c380b71cd1fd6ba (patch) | |
tree | 1b971f21c0c5e50901cd1663d50b0af278730ab3 /OpenAL32/alAuxEffectSlot.c | |
parent | e80e1b6d9f4c31521dd3e6437280c851ea94d82e (diff) |
Move the WetBuffer into the effect slot object
This should make it easier to support multiple slots
Diffstat (limited to 'OpenAL32/alAuxEffectSlot.c')
-rw-r--r-- | OpenAL32/alAuxEffectSlot.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/OpenAL32/alAuxEffectSlot.c b/OpenAL32/alAuxEffectSlot.c index dd524f02..65db34b3 100644 --- a/OpenAL32/alAuxEffectSlot.c +++ b/OpenAL32/alAuxEffectSlot.c @@ -38,7 +38,7 @@ static ALvoid InitializeEffect(ALCcontext *Context, ALeffectslot *ALEffectSlot, ALvoid AL_APIENTRY alGenAuxiliaryEffectSlots(ALsizei n, ALuint *effectslots) { ALCcontext *Context; - ALsizei i; + ALsizei i, j; Context = alcGetCurrentContext(); if(!Context) @@ -74,6 +74,8 @@ ALvoid AL_APIENTRY alGenAuxiliaryEffectSlots(ALsizei n, ALuint *effectslots) (*list)->Gain = 1.0; (*list)->AuxSendAuto = AL_TRUE; + for(j = 0;j < BUFFERSIZE;j++) + (*list)->WetBuffer[j] = 0.0f; (*list)->refcount = 0; effectslots[i] = (ALuint)ALTHUNK_ADDENTRY(*list); |