diff options
author | Chris Robinson <[email protected]> | 2013-05-21 23:42:40 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2013-05-21 23:42:40 -0700 |
commit | 0a07ed14c27a3b4269c024dc4827483d33b9c059 (patch) | |
tree | 8d3d8c654f3041ea7b77d1c6b5c78db037d74c66 /Alc/ALc.c | |
parent | 604726c6392e6deefa9648ef6f8044ccf85ac1fa (diff) |
Rename DELETE to DELETE_OBJ
Because Windows.
Diffstat (limited to 'Alc/ALc.c')
-rw-r--r-- | Alc/ALc.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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"); } } |