diff options
author | Chris Robinson <[email protected]> | 2017-03-06 13:16:14 -0800 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2017-03-07 00:19:40 -0800 |
commit | bc0096365e66b8114a54bb533e818deb794c7601 (patch) | |
tree | d49a984e03c389793594817100fa22141f9cef01 /Alc/mixer.c | |
parent | 1b3100ab9ac24a345b16a03fbad2c3cc2167ce79 (diff) |
Don't modify the source state in the mixer
Diffstat (limited to 'Alc/mixer.c')
-rw-r--r-- | Alc/mixer.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Alc/mixer.c b/Alc/mixer.c index b332030e..393d9210 100644 --- a/Alc/mixer.c +++ b/Alc/mixer.c @@ -681,7 +681,6 @@ ALboolean MixSource(ALvoice *voice, ALsource *Source, ALCdevice *Device, ALsizei voice->Moving = AL_TRUE; /* Update source info */ - ATOMIC_STORE(&Source->state, State, almemory_order_relaxed); ATOMIC_STORE(&voice->position, DataPosInt, almemory_order_relaxed); ATOMIC_STORE(&voice->position_fraction, DataPosFrac, almemory_order_relaxed); ATOMIC_STORE(&voice->current_buffer, BufferListItem, almemory_order_release); |