diff options
author | Chris Robinson <[email protected]> | 2016-05-19 20:50:55 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2016-05-19 20:50:55 -0700 |
commit | 7bf64eaee0788b7eb64c7410384a9ee66f75c4ce (patch) | |
tree | b0b410caa1aa380fb329ff982f881a958f7eaec0 /Alc/ALu.c | |
parent | d80f00173f0ef623f69a9cc307457b198186ded8 (diff) |
Make the source position calues atomic
Diffstat (limited to 'Alc/ALu.c')
-rw-r--r-- | Alc/ALu.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1619,8 +1619,8 @@ ALvoid aluHandleDisconnect(ALCdevice *device) { source->state = AL_STOPPED; ATOMIC_STORE(&source->current_buffer, NULL); - source->position = 0; - source->position_fraction = 0; + ATOMIC_STORE(&source->position, 0); + ATOMIC_STORE(&source->position_fraction, 0); } voice++; |