aboutsummaryrefslogtreecommitdiffstats
path: root/OpenAL32/alSource.cpp
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2019-02-04 21:28:37 -0800
committerChris Robinson <[email protected]>2019-02-04 21:28:37 -0800
commit05cdc2cb3002e0c9a20764a1e4e6a0e4de5e809e (patch)
treeb280b918efe07576d856be9ef154bdf4a46f4023 /OpenAL32/alSource.cpp
parente104f580b3170d643e0e2974bdad17c4d6609b28 (diff)
Use relaxed memory ordering for initializing atomic_flags
Diffstat (limited to 'OpenAL32/alSource.cpp')
-rw-r--r--OpenAL32/alSource.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenAL32/alSource.cpp b/OpenAL32/alSource.cpp
index cc384478..7a711bfb 100644
--- a/OpenAL32/alSource.cpp
+++ b/OpenAL32/alSource.cpp
@@ -3352,9 +3352,9 @@ ALsource::ALsource(ALsizei num_sends)
queue = nullptr;
- VoiceIdx = -1;
+ PropsClean.test_and_set(std::memory_order_relaxed);
- PropsClean.test_and_set();
+ VoiceIdx = -1;
}
ALsource::~ALsource()