From 9fb91f70aafae4bbc745f9cf52d027cd2b07a52a Mon Sep 17 00:00:00 2001 From: Chris Robinson Date: Tue, 30 Aug 2011 23:28:38 -0700 Subject: Rename GetReffedContext to GetContextRef --- OpenAL32/alAuxEffectSlot.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'OpenAL32/alAuxEffectSlot.c') diff --git a/OpenAL32/alAuxEffectSlot.c b/OpenAL32/alAuxEffectSlot.c index 88645163..06eb629f 100644 --- a/OpenAL32/alAuxEffectSlot.c +++ b/OpenAL32/alAuxEffectSlot.c @@ -45,7 +45,7 @@ AL_API ALvoid AL_APIENTRY alGenAuxiliaryEffectSlots(ALsizei n, ALuint *effectslo ALCcontext *Context; ALCdevice *Device; - Context = GetReffedContext(); + Context = GetContextRef(); if(!Context) return; Device = Context->Device; @@ -123,7 +123,7 @@ AL_API ALvoid AL_APIENTRY alDeleteAuxiliaryEffectSlots(ALsizei n, ALuint *effect ALeffectslot *EffectSlot; ALsizei i; - Context = GetReffedContext(); + Context = GetContextRef(); if(!Context) return; if(n < 0) @@ -173,7 +173,7 @@ AL_API ALboolean AL_APIENTRY alIsAuxiliaryEffectSlot(ALuint effectslot) ALCcontext *Context; ALboolean result; - Context = GetReffedContext(); + Context = GetContextRef(); if(!Context) return AL_FALSE; result = (LookupEffectSlot(Context->EffectSlotMap, effectslot) ? -- cgit v1.2.3