From 404cfde33e0aba9b084a40407a6f3fffd8dd1612 Mon Sep 17 00:00:00 2001 From: Chris Robinson Date: Mon, 12 Sep 2011 05:59:23 -0700 Subject: Rename the ALEffect_ macros to ALeffectState_ to reflect what they work on --- Alc/ALu.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'Alc/ALu.c') diff --git a/Alc/ALu.c b/Alc/ALu.c index 4b4f6778..2b5a6e75 100644 --- a/Alc/ALu.c +++ b/Alc/ALu.c @@ -1004,10 +1004,10 @@ ALvoid aluMixData(ALCdevice *device, ALvoid *buffer, ALsizei size) (*slot)->PendingClicks[0] = 0.0f; if(!DeferUpdates && ExchangeInt(&(*slot)->NeedsUpdate, AL_FALSE)) - ALEffect_Update((*slot)->EffectState, ctx, *slot); + ALeffectState_Update((*slot)->EffectState, ctx, *slot); - ALEffect_Process((*slot)->EffectState, SamplesToDo, - (*slot)->WetBuffer, device->DryBuffer); + ALeffectState_Process((*slot)->EffectState, SamplesToDo, + (*slot)->WetBuffer, device->DryBuffer); for(i = 0;i < SamplesToDo;i++) (*slot)->WetBuffer[i] = 0.0f; -- cgit v1.2.3