diff options
author | Chris Robinson <[email protected]> | 2011-08-29 00:03:09 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2011-08-29 00:03:09 -0700 |
commit | 01503f8a7bd99136445008eba5bed5af483a7aea (patch) | |
tree | e55833946185852b637e2073b8d8b3a431ff4c33 /OpenAL32/Include/alSource.h | |
parent | aa99e1220b72863ca137917d0c45033aad7cd67d (diff) |
Use an enum instead of an boolean for some flags
They still only hold AL_TRUE or AL_FALSE, but some systems can't properly
handle atomic swaps of 1-byte types.
Diffstat (limited to 'OpenAL32/Include/alSource.h')
-rw-r--r-- | OpenAL32/Include/alSource.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenAL32/Include/alSource.h b/OpenAL32/Include/alSource.h index 735e669c..f76cd2c1 100644 --- a/OpenAL32/Include/alSource.h +++ b/OpenAL32/Include/alSource.h @@ -119,7 +119,7 @@ typedef struct ALsource ALfloat history[MAXCHANNELS]; } Send[MAX_SENDS]; } Params; - ALboolean NeedsUpdate; + ALenum NeedsUpdate; ALvoid (*Update)(struct ALsource *self, const ALCcontext *context); |