From 6ca8fadd583ade917a07da90c038ce62220593f7 Mon Sep 17 00:00:00 2001 From: Chris Robinson Date: Thu, 12 Sep 2019 12:14:23 -0700 Subject: Fix counting free objects --- al/source.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'al/source.cpp') diff --git a/al/source.cpp b/al/source.cpp index 3c22b620..38c4ff54 100644 --- a/al/source.cpp +++ b/al/source.cpp @@ -500,7 +500,7 @@ bool EnsureSources(ALCcontext *context, size_t needed) size_t count{std::accumulate(context->mSourceList.cbegin(), context->mSourceList.cend(), size_t{0}, [](size_t cur, const SourceSubList &sublist) noexcept -> size_t - { return cur + static_cast(POPCNT64(~sublist.FreeMask)); } + { return cur + static_cast(POPCNT64(sublist.FreeMask)); } )}; while(needed > count) -- cgit v1.2.3