aboutsummaryrefslogtreecommitdiffstats
path: root/OpenAL32/Include
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2018-02-24 09:44:52 -0800
committerChris Robinson <[email protected]>2018-02-24 09:44:52 -0800
commitc7456affd541b7aef9ff252da51031e671c30734 (patch)
treeca187ab4e7f45538500acb2fa610bfea6aa6e9a7 /OpenAL32/Include
parenta1ef5e38b6ee6db718fa7652d7831d2f86ec6b1c (diff)
Don't make the source state atomic
Diffstat (limited to 'OpenAL32/Include')
-rw-r--r--OpenAL32/Include/alSource.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenAL32/Include/alSource.h b/OpenAL32/Include/alSource.h
index 277cf7f2..5b9d66dc 100644
--- a/OpenAL32/Include/alSource.h
+++ b/OpenAL32/Include/alSource.h
@@ -92,7 +92,7 @@ typedef struct ALsource {
ALint SourceType;
/** Source state (initial, playing, paused, or stopped) */
- ATOMIC(ALenum) state;
+ ALenum state;
/** Source Buffer Queue head. */
ALbufferlistitem *queue;