From 8f35f464a1b3ae1b8772a4645941a1fb2fec006e Mon Sep 17 00:00:00 2001 From: Chris Robinson Date: Wed, 9 Jan 2019 01:06:19 -0800 Subject: Change a true/false ALenum atomic into a bool --- Alc/alcontext.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Alc/alcontext.h') 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 HoldUpdates{AL_FALSE}; + std::atomic HoldUpdates{false}; ALfloat GainBoost{1.0f}; -- cgit v1.2.3