From 0a07ed14c27a3b4269c024dc4827483d33b9c059 Mon Sep 17 00:00:00 2001 From: Chris Robinson Date: Tue, 21 May 2013 23:42:40 -0700 Subject: Rename DELETE to DELETE_OBJ Because Windows. --- Alc/ALc.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Alc/ALc.c') diff --git a/Alc/ALc.c b/Alc/ALc.c index 14bdf98d..dfead761 100644 --- a/Alc/ALc.c +++ b/Alc/ALc.c @@ -1779,7 +1779,7 @@ static ALCvoid FreeDevice(ALCdevice *device) { ALeffectState *state = device->DefaultSlot->EffectState; device->DefaultSlot = NULL; - DELETE(state); + DELETE_OBJ(state); } if(device->BufferMap.size > 0) @@ -2902,7 +2902,7 @@ ALC_API ALCdevice* ALC_APIENTRY alcOpenDevice(const ALCchar *deviceName) { ALeffectState *state = device->DefaultSlot->EffectState; device->DefaultSlot = NULL; - DELETE(state); + DELETE_OBJ(state); ERR("Failed to initialize the default effect\n"); } } -- cgit v1.2.3