diff options
author | Chris Robinson <[email protected]> | 2007-12-20 21:48:17 -0800 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2007-12-20 21:48:17 -0800 |
commit | 229bc0d7e14f2671b420ea995101fc38523285d2 (patch) | |
tree | 0217bc2b4fc04ae0fb445b6bc456b52745396737 /Alc/ALc.c | |
parent | 7bf9ebf5450840c20d2453fcf7fc1f1b37f979ec (diff) | |
parent | 5b0514a829afcdca201096f8f1c38ab684d45b49 (diff) |
Merge branch 'master' into efx-experiment
Diffstat (limited to 'Alc/ALc.c')
-rw-r--r-- | Alc/ALc.c | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -34,7 +34,7 @@ /////////////////////////////////////////////////////// // DEBUG INFORMATION -char szDebug[256]; +char _alDebug[256]; /////////////////////////////////////////////////////// @@ -206,7 +206,7 @@ static void InitAL(void) int i; const char *devs; - InitializeCriticalSection(&g_mutex); + InitializeCriticalSection(&_alMutex); ALTHUNK_INIT(); ReadALConfig(); @@ -316,7 +316,7 @@ ALCvoid SetALCError(ALenum errorCode) ALCvoid SuspendContext(ALCcontext *pContext) { (void)pContext; - EnterCriticalSection(&g_mutex); + EnterCriticalSection(&_alMutex); } @@ -328,7 +328,7 @@ ALCvoid SuspendContext(ALCcontext *pContext) ALCvoid ProcessContext(ALCcontext *pContext) { (void)pContext; - LeaveCriticalSection(&g_mutex); + LeaveCriticalSection(&_alMutex); } |