diff options
author | Chris Robinson <[email protected]> | 2019-09-12 12:14:23 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2019-09-12 12:14:23 -0700 |
commit | 6ca8fadd583ade917a07da90c038ce62220593f7 (patch) | |
tree | fd247ebbd69f0b906b8dbe8768466a618e4297d3 /al/auxeffectslot.cpp | |
parent | ac48569c691f92311be81271e9b6b57947eb35a0 (diff) |
Fix counting free objects
Diffstat (limited to 'al/auxeffectslot.cpp')
-rw-r--r-- | al/auxeffectslot.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/al/auxeffectslot.cpp b/al/auxeffectslot.cpp index 85c07c89..4dc38ecc 100644 --- a/al/auxeffectslot.cpp +++ b/al/auxeffectslot.cpp @@ -164,7 +164,7 @@ bool EnsureEffectSlots(ALCcontext *context, size_t needed) size_t count{std::accumulate(context->mEffectSlotList.cbegin(), context->mEffectSlotList.cend(), size_t{0}, [](size_t cur, const EffectSlotSubList &sublist) noexcept -> size_t - { return cur + static_cast<ALuint>(POPCNT64(~sublist.FreeMask)); } + { return cur + static_cast<ALuint>(POPCNT64(sublist.FreeMask)); } )}; while(needed > count) |