Change a true/false ALenum atomic into a bool

This commit is contained in:
Chris Robinson
2019-01-09 01:06:19 -08:00
parent b49c45d3a4
commit 8f35f464a1
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -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);
}
}
+1 -1
View File
@@ -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};