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/alAuxEffectSlot.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/alAuxEffectSlot.h')
-rw-r--r-- | OpenAL32/Include/alAuxEffectSlot.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenAL32/Include/alAuxEffectSlot.h b/OpenAL32/Include/alAuxEffectSlot.h index fe63b39b..ac71c4ec 100644 --- a/OpenAL32/Include/alAuxEffectSlot.h +++ b/OpenAL32/Include/alAuxEffectSlot.h @@ -18,7 +18,7 @@ typedef struct ALeffectslot ALfloat Gain; ALboolean AuxSendAuto; - ALboolean NeedsUpdate; + ALenum NeedsUpdate; ALeffectState *EffectState; ALfloat WetBuffer[BUFFERSIZE]; |