aboutsummaryrefslogtreecommitdiffstats
path: root/OpenAL32/alAuxEffectSlot.c
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2010-08-15 14:52:12 -0700
committerChris Robinson <[email protected]>2010-08-15 14:52:12 -0700
commit00525274a0d32b5958e82ac309ece9d9132332f1 (patch)
tree9326a7caba577223e47d88a37f7252f04140e694 /OpenAL32/alAuxEffectSlot.c
parent2915d9dbd9c4a0575a94eb1f65a1fc47c866209c (diff)
Add click removal for wet sends
Diffstat (limited to 'OpenAL32/alAuxEffectSlot.c')
-rw-r--r--OpenAL32/alAuxEffectSlot.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/OpenAL32/alAuxEffectSlot.c b/OpenAL32/alAuxEffectSlot.c
index e8a76d35..a7ea0e32 100644
--- a/OpenAL32/alAuxEffectSlot.c
+++ b/OpenAL32/alAuxEffectSlot.c
@@ -88,6 +88,8 @@ AL_API ALvoid AL_APIENTRY alGenAuxiliaryEffectSlots(ALsizei n, ALuint *effectslo
slot->AuxSendAuto = AL_TRUE;
for(j = 0;j < BUFFERSIZE;j++)
slot->WetBuffer[j] = 0.0f;
+ for(j = 0;j < 1;j++)
+ slot->ClickRemoval[j] = 0.0f;
slot->refcount = 0;
}
}