diff options
Diffstat (limited to 'Alc/alcontext.h')
-rw-r--r-- | Alc/alcontext.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Alc/alcontext.h b/Alc/alcontext.h index 42c29ecb..fa16859e 100644 --- a/Alc/alcontext.h +++ b/Alc/alcontext.h @@ -90,7 +90,7 @@ struct ALCcontext { * indicates if updates are currently happening). */ RefCount UpdateCount{0u}; - std::atomic<ALenum> HoldUpdates{AL_FALSE}; + std::atomic<bool> HoldUpdates{false}; ALfloat GainBoost{1.0f}; |