aboutsummaryrefslogtreecommitdiffstats
path: root/alc/context.cpp
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2022-06-18 14:18:28 -0700
committerChris Robinson <[email protected]>2022-06-18 14:18:28 -0700
commitbb320a7019949e6febb635c538adb6ac441a9756 (patch)
tree427ac8ecd3e11127d9d329b93dfffad1ececace8 /alc/context.cpp
parent83363e3332076a3b55d2c036a7e5b9da31e56afd (diff)
Remove an unused lambda capture
Diffstat (limited to 'alc/context.cpp')
-rw-r--r--alc/context.cpp2
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);
}