diff options
Diffstat (limited to 'Alc/alcontext.h')
-rw-r--r-- | Alc/alcontext.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Alc/alcontext.h b/Alc/alcontext.h index 424f1447..ce715bc2 100644 --- a/Alc/alcontext.h +++ b/Alc/alcontext.h @@ -69,8 +69,8 @@ struct ALCcontext_struct { ALfloat SpeedOfSound{}; ALfloat MetersPerUnit{1.0f}; - ATOMIC(ALenum) PropsClean{AL_TRUE}; - ATOMIC(ALenum) DeferUpdates{AL_FALSE}; + std::atomic_flag PropsClean{true}; + std::atomic<bool> DeferUpdates{false}; almtx_t PropLock; |