aboutsummaryrefslogtreecommitdiffstats
path: root/OpenAL32/alState.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/alState.c
parenta32a3bcda87bc7ee56a13495b4afb3280aee9f9e (diff)
Rename GetReffedContext to GetContextRef
Diffstat (limited to 'OpenAL32/alState.c')
-rw-r--r--OpenAL32/alState.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenAL32/alState.c b/OpenAL32/alState.c
index 297250bd..dc88263e 100644
--- a/OpenAL32/alState.c
+++ b/OpenAL32/alState.c
@@ -577,7 +577,7 @@ AL_API ALvoid AL_APIENTRY alDeferUpdatesSOFT(void)
{
ALCcontext *Context;
- Context = GetReffedContext();
+ Context = GetContextRef();
if(!Context) return;
if(!Context->DeferUpdates)
@@ -628,7 +628,7 @@ AL_API ALvoid AL_APIENTRY alProcessUpdatesSOFT(void)
{
ALCcontext *Context;
- Context = GetReffedContext();
+ Context = GetContextRef();
if(!Context) return;
if(ExchangeInt(&Context->DeferUpdates, AL_FALSE))