aboutsummaryrefslogtreecommitdiffstats
path: root/OpenAL32/alSource.c
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2017-03-23 19:32:53 -0700
committerChris Robinson <[email protected]>2017-03-23 19:32:53 -0700
commit1aca34468877feb07a2c05a23d4fdb8f41cecfd2 (patch)
tree4603c31f20f47f40fe8d4d5cda1c56374e08aa5f /OpenAL32/alSource.c
parent1c49d0542d53133c1e023fc22ff5537ea3ca41aa (diff)
Fix handling of the PropsClean flags
Diffstat (limited to 'OpenAL32/alSource.c')
-rw-r--r--OpenAL32/alSource.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenAL32/alSource.c b/OpenAL32/alSource.c
index a882cb83..e18a00e2 100644
--- a/OpenAL32/alSource.c
+++ b/OpenAL32/alSource.c
@@ -3113,7 +3113,7 @@ void UpdateAllSourceProps(ALCcontext *context)
{
ALvoice *voice = context->Voices[pos];
ALsource *source = ATOMIC_LOAD(&voice->Source, almemory_order_acquire);
- if(source != NULL && ATOMIC_FLAG_TEST_AND_SET(&source->PropsClean, almemory_order_acq_rel))
+ if(source != NULL && !ATOMIC_FLAG_TEST_AND_SET(&source->PropsClean, almemory_order_acq_rel))
UpdateSourceProps(source, num_sends);
}
}