diff options
author | Chris Robinson <[email protected]> | 2019-01-09 01:06:19 -0800 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2019-01-09 01:06:19 -0800 |
commit | 8f35f464a1b3ae1b8772a4645941a1fb2fec006e (patch) | |
tree | 140809f2e7f28f3943f08e16c813730bfd5749c8 /Alc/alcontext.h | |
parent | b49c45d3a462a16c72bd824cd40e3b37d6e31939 (diff) |
Change a true/false ALenum atomic into a bool
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}; |