aboutsummaryrefslogtreecommitdiffstats
path: root/OpenAL32/Include/alAuxEffectSlot.h
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2017-03-08 03:38:28 -0800
committerChris Robinson <[email protected]>2017-03-08 04:59:22 -0800
commit5ffb0842ac5022b1e5d34973ed6f512b5f0d7434 (patch)
treea5d939991d249358761d64587471b9856c419445 /OpenAL32/Include/alAuxEffectSlot.h
parentb1b3a369ef4ffdfa78abbb14e7e3b6d842cd4104 (diff)
Remove unnecessary atomic members
Diffstat (limited to 'OpenAL32/Include/alAuxEffectSlot.h')
-rw-r--r--OpenAL32/Include/alAuxEffectSlot.h8
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;
};