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/alError.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'OpenAL32/alError.c') diff --git a/OpenAL32/alError.c b/OpenAL32/alError.c index 88e284b0..29d06027 100644 --- a/OpenAL32/alError.c +++ b/OpenAL32/alError.c @@ -24,12 +24,12 @@ #include "AL/alc.h" #include "alError.h" -AL_API ALenum AL_APIENTRY alGetError(ALvoid) +AL_API ALenum AL_APIENTRY alGetError(void) { ALCcontext *Context; ALenum errorCode; - Context = GetReffedContext(); + Context = GetContextRef(); if(!Context) return AL_INVALID_OPERATION; errorCode = ExchangeInt(&Context->LastError, AL_NO_ERROR); -- cgit v1.2.3