diff options
-rw-r--r-- | al/auxeffectslot.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/al/auxeffectslot.cpp b/al/auxeffectslot.cpp index 150b346b..0b64f9da 100644 --- a/al/auxeffectslot.cpp +++ b/al/auxeffectslot.cpp @@ -587,8 +587,12 @@ START_API_FUNC } if UNLIKELY(slot->mState == SlotState::Initial) { + slot->mPropsDirty.test_and_clear(std::memory_order_acq_rel); + slot->updateProps(context.get()); + AddActiveEffectSlots({&slot, 1}, context.get()); slot->mState = SlotState::Playing; + return; } break; |