aboutsummaryrefslogtreecommitdiffstats
path: root/OpenAL32/alAuxEffectSlot.c
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2011-08-30 23:28:38 -0700
committerChris Robinson <[email protected]>2011-08-30 23:28:38 -0700
commit9fb91f70aafae4bbc745f9cf52d027cd2b07a52a (patch)
tree99af0c4fb9761c9e3186580aed86148b918bdb0c /OpenAL32/alAuxEffectSlot.c
parenta32a3bcda87bc7ee56a13495b4afb3280aee9f9e (diff)
Rename GetReffedContext to GetContextRef
Diffstat (limited to 'OpenAL32/alAuxEffectSlot.c')
-rw-r--r--OpenAL32/alAuxEffectSlot.c6
1 files changed, 3 insertions, 3 deletions
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) ?