diff options
author | Chris Robinson <[email protected]> | 2011-08-28 17:38:55 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2011-08-28 17:38:55 -0700 |
commit | c567339718b10713a695bcb9cd171919779780a4 (patch) | |
tree | c65f8b2ded027eeac91dcd6c5838918d3d1e8fdb /Alc/ALc.c | |
parent | 5eceb593e9cfd57611e99217e2f9c346bb10305c (diff) |
Rename ALCcontext_Deref to ALCcontext_DecRef
Diffstat (limited to 'Alc/ALc.c')
-rw-r--r-- | Alc/ALc.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1406,7 +1406,7 @@ static ALCvoid FreeContext(ALCcontext *context) free(context); } -static void ALCcontext_Deref(ALCcontext *context) +static void ALCcontext_DecRef(ALCcontext *context) { if(DecrementRef(&context->ref) == 0) FreeContext(context); @@ -2127,7 +2127,7 @@ ALC_API ALCvoid ALC_APIENTRY alcDestroyContext(ALCcontext *context) } UnlockLists(); - ALCcontext_Deref(context); + ALCcontext_DecRef(context); } |