aboutsummaryrefslogtreecommitdiffstats
path: root/Alc/ALc.c
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2013-05-29 11:17:45 -0700
committerChris Robinson <[email protected]>2013-05-29 11:17:45 -0700
commit764e3aa4963c4fbfb08b313d93f6246b5d79b1b9 (patch)
treebf565ba0334fbd943bc2146f3882e05b70a69dc4 /Alc/ALc.c
parente96cc656e9c9176ba60cd191896fd6386a7fd74d (diff)
Fix up the naming convention of effect methods
Diffstat (limited to 'Alc/ALc.c')
-rw-r--r--Alc/ALc.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/Alc/ALc.c b/Alc/ALc.c
index 975fe661..4d60278f 100644
--- a/Alc/ALc.c
+++ b/Alc/ALc.c
@@ -1707,7 +1707,7 @@ static ALCenum UpdateDeviceParams(ALCdevice *device, const ALCint *attrList)
{
ALeffectslot *slot = context->EffectSlotMap.array[pos].value;
- if(VCALL(slot->EffectState,DeviceUpdate,(device)) == AL_FALSE)
+ if(VCALL(slot->EffectState,deviceUpdate,(device)) == AL_FALSE)
{
UnlockUIntMapRead(&context->EffectSlotMap);
ALCdevice_Unlock(device);
@@ -1715,7 +1715,7 @@ static ALCenum UpdateDeviceParams(ALCdevice *device, const ALCint *attrList)
return ALC_INVALID_DEVICE;
}
slot->NeedsUpdate = AL_FALSE;
- VCALL(slot->EffectState,Update,(device, slot));
+ VCALL(slot->EffectState,update,(device, slot));
}
UnlockUIntMapRead(&context->EffectSlotMap);
@@ -1744,14 +1744,14 @@ static ALCenum UpdateDeviceParams(ALCdevice *device, const ALCint *attrList)
{
ALeffectslot *slot = device->DefaultSlot;
- if(VCALL(slot->EffectState,DeviceUpdate,(device)) == AL_FALSE)
+ if(VCALL(slot->EffectState,deviceUpdate,(device)) == AL_FALSE)
{
ALCdevice_Unlock(device);
RestoreFPUMode(&oldMode);
return ALC_INVALID_DEVICE;
}
slot->NeedsUpdate = AL_FALSE;
- VCALL(slot->EffectState,Update,(device, slot));
+ VCALL(slot->EffectState,update,(device, slot));
}
ALCdevice_Unlock(device);
RestoreFPUMode(&oldMode);