diff options
Diffstat (limited to 'Alc/helpers.c')
-rw-r--r-- | Alc/helpers.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Alc/helpers.c b/Alc/helpers.c index 265c8210..90bec01c 100644 --- a/Alc/helpers.c +++ b/Alc/helpers.c @@ -268,13 +268,13 @@ void SetRTPriority(void) static void Lock(volatile ALenum *l) { - while(Exchange_ALenum(l, AL_TRUE) == AL_TRUE) + while(ExchangeInt(l, AL_TRUE) == AL_TRUE) Sleep(0); } static void Unlock(volatile ALenum *l) { - Exchange_ALenum(l, AL_FALSE); + ExchangeInt(l, AL_FALSE); } void ReadLock(RWLock *lock) |