diff options
author | Chris Robinson <[email protected]> | 2017-03-08 03:38:28 -0800 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2017-03-08 04:59:22 -0800 |
commit | 5ffb0842ac5022b1e5d34973ed6f512b5f0d7434 (patch) | |
tree | a5d939991d249358761d64587471b9856c419445 /OpenAL32/Include/alAuxEffectSlot.h | |
parent | b1b3a369ef4ffdfa78abbb14e7e3b6d842cd4104 (diff) |
Remove unnecessary atomic members
Diffstat (limited to 'OpenAL32/Include/alAuxEffectSlot.h')
-rw-r--r-- | OpenAL32/Include/alAuxEffectSlot.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/OpenAL32/Include/alAuxEffectSlot.h b/OpenAL32/Include/alAuxEffectSlot.h index 40ff1393..3c24f80c 100644 --- a/OpenAL32/Include/alAuxEffectSlot.h +++ b/OpenAL32/Include/alAuxEffectSlot.h @@ -75,13 +75,13 @@ static const struct ALeffectStateFactoryVtable T##_ALeffectStateFactory_vtable = struct ALeffectslotProps { - ATOMIC(ALfloat) Gain; - ATOMIC(ALboolean) AuxSendAuto; + ALfloat Gain; + ALboolean AuxSendAuto; - ATOMIC(ALenum) Type; + ALenum Type; ALeffectProps Props; - ATOMIC(ALeffectState*) State; + ALeffectState *State; ATOMIC(struct ALeffectslotProps*) next; }; |