diff options
author | Chris Robinson <[email protected]> | 2024-01-03 13:16:09 -0800 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2024-01-03 13:16:09 -0800 |
commit | f8604758bc7cc43efa52a305a578ee9cf474f0d6 (patch) | |
tree | daba8befcbc45a7af52bb90a462aa7cb2daba1f5 /alc/alu.cpp | |
parent | 2dacf2ddcc60b21a7ac67d8a020082d8f36d39dd (diff) |
Allocate effect slot property updates in clusters
Diffstat (limited to 'alc/alu.cpp')
-rw-r--r-- | alc/alu.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/alc/alu.cpp b/alc/alu.cpp index 9e7a758e..59b5a551 100644 --- a/alc/alu.cpp +++ b/alc/alu.cpp @@ -498,7 +498,7 @@ bool CalcEffectSlotParams(EffectSlot *slot, EffectSlot **sorted_slots, ContextBa } } - AtomicReplaceHead(context->mFreeEffectslotProps, props); + AtomicReplaceHead(context->mFreeEffectSlotProps, props); EffectTarget output; if(EffectSlot *target{slot->Target}) |