aboutsummaryrefslogtreecommitdiffstats
path: root/Alc/alc.cpp
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2019-01-09 01:06:19 -0800
committerChris Robinson <[email protected]>2019-01-09 01:06:19 -0800
commit8f35f464a1b3ae1b8772a4645941a1fb2fec006e (patch)
tree140809f2e7f28f3943f08e16c813730bfd5749c8 /Alc/alc.cpp
parentb49c45d3a462a16c72bd824cd40e3b37d6e31939 (diff)
Change a true/false ALenum atomic into a bool
Diffstat (limited to 'Alc/alc.cpp')
-rw-r--r--Alc/alc.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/Alc/alc.cpp b/Alc/alc.cpp
index 9b56ea8d..e2ac0bce 100644
--- a/Alc/alc.cpp
+++ b/Alc/alc.cpp
@@ -1506,7 +1506,7 @@ void ALCcontext_ProcessUpdates(ALCcontext *context)
/* Tell the mixer to stop applying updates, then wait for any active
* updating to finish, before providing updates.
*/
- context->HoldUpdates.store(AL_TRUE);
+ context->HoldUpdates.store(true, std::memory_order_release);
while((context->UpdateCount.load(std::memory_order_acquire)&1) != 0)
std::this_thread::yield();
@@ -1520,7 +1520,7 @@ void ALCcontext_ProcessUpdates(ALCcontext *context)
/* Now with all updates declared, let the mixer continue applying them
* so they all happen at once.
*/
- context->HoldUpdates.store(AL_FALSE);
+ context->HoldUpdates.store(false, std::memory_order_release);
}
}