diff options
author | Chris Robinson <[email protected]> | 2022-06-18 14:18:28 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2022-06-18 14:18:28 -0700 |
commit | bb320a7019949e6febb635c538adb6ac441a9756 (patch) | |
tree | 427ac8ecd3e11127d9d329b93dfffad1ececace8 /alc/context.cpp | |
parent | 83363e3332076a3b55d2c036a7e5b9da31e56afd (diff) |
Remove an unused lambda capture
Diffstat (limited to 'alc/context.cpp')
-rw-r--r-- | alc/context.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/alc/context.cpp b/alc/context.cpp index 447a1fe2..9292926c 100644 --- a/alc/context.cpp +++ b/alc/context.cpp @@ -797,7 +797,7 @@ void ALCcontext::eax_initialize_sources() void ALCcontext::eax_update_sources() { std::unique_lock<std::mutex> source_lock{mSourceLock}; - auto update_source = [this](ALsource &source) + auto update_source = [](ALsource &source) { source.eax_commit(); }; ForEachSource(this, update_source); } |