diff options
Diffstat (limited to 'OpenAL32/Include/alListener.h')
-rw-r--r-- | OpenAL32/Include/alListener.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenAL32/Include/alListener.h b/OpenAL32/Include/alListener.h index 1e0a8265..6b1dcda9 100644 --- a/OpenAL32/Include/alListener.h +++ b/OpenAL32/Include/alListener.h @@ -28,7 +28,7 @@ struct ALlistener { ALfloat Up[3]{0.0f, 1.0f, 0.0f}; ALfloat Gain{1.0f}; - ATOMIC(ALenum) PropsClean{AL_TRUE}; + std::atomic_flag PropsClean{true}; /* Pointer to the most recent property values that are awaiting an update. */ |