diff options
author | Chris Robinson <[email protected]> | 2013-05-27 11:48:29 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2013-05-27 11:48:29 -0700 |
commit | 9e84f38a46f49230bf836e8a33b0637c000d659b (patch) | |
tree | 733ee48b1c03794731ff1e0f2454b0db52886e5c /Alc/ALc.c | |
parent | 06c8442af67fcb38241d2f13a649fc8d4dedaa85 (diff) |
Use generic VCALL[_NOARGS] macros instead of type-specific wrappers
Diffstat (limited to 'Alc/ALc.c')
-rw-r--r-- | Alc/ALc.c | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -1707,7 +1707,7 @@ static ALCenum UpdateDeviceParams(ALCdevice *device, const ALCint *attrList) { ALeffectslot *slot = context->EffectSlotMap.array[pos].value; - if(ALeffectState_DeviceUpdate(slot->EffectState, 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; - ALeffectState_Update(slot->EffectState, 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(ALeffectState_DeviceUpdate(slot->EffectState, device) == AL_FALSE) + if(VCALL(slot->EffectState,DeviceUpdate,(device)) == AL_FALSE) { ALCdevice_Unlock(device); RestoreFPUMode(&oldMode); return ALC_INVALID_DEVICE; } slot->NeedsUpdate = AL_FALSE; - ALeffectState_Update(slot->EffectState, device, slot); + VCALL(slot->EffectState,Update,(device, slot)); } ALCdevice_Unlock(device); RestoreFPUMode(&oldMode); |