diff options
Diffstat (limited to 'OpenAL32/alState.c')
-rw-r--r-- | OpenAL32/alState.c | 4 |
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)) |