From 723755788d645a04d7191dc631807660ce0125cb Mon Sep 17 00:00:00 2001 From: Chris Robinson Date: Thu, 30 Jun 2011 18:10:04 -0700 Subject: Rename Suspend/ProcessContext since they are locking a mutex --- 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 43b8e44d..c4c9f4dd 100644 --- a/OpenAL32/alError.c +++ b/OpenAL32/alError.c @@ -29,13 +29,13 @@ AL_API ALenum AL_APIENTRY alGetError(ALvoid) ALCcontext *Context; ALenum errorCode; - Context = GetContextSuspended(); + Context = GetLockedContext(); if(!Context) return AL_INVALID_OPERATION; errorCode = Context->LastError; Context->LastError = AL_NO_ERROR; - ProcessContext(Context); + UnlockContext(Context); return errorCode; } -- cgit v1.2.3