summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/audio/audout_u.cpp
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2020-08-03 17:28:18 +0200
committerLioncash <mathew1800@gmail.com>2020-08-03 17:54:04 +0200
commitb249e4e0ce15c44bd0d917a17f79510af868173b (patch)
treed4dc63a692c446e87ee614481030af16385e88ba /src/core/hle/service/audio/audout_u.cpp
parentipc: Allow all trivially copyable objects to be passed directly into WriteBuffer (#4465) (diff)
downloadyuzu-b249e4e0ce15c44bd0d917a17f79510af868173b.tar
yuzu-b249e4e0ce15c44bd0d917a17f79510af868173b.tar.gz
yuzu-b249e4e0ce15c44bd0d917a17f79510af868173b.tar.bz2
yuzu-b249e4e0ce15c44bd0d917a17f79510af868173b.tar.lz
yuzu-b249e4e0ce15c44bd0d917a17f79510af868173b.tar.xz
yuzu-b249e4e0ce15c44bd0d917a17f79510af868173b.tar.zst
yuzu-b249e4e0ce15c44bd0d917a17f79510af868173b.zip
Diffstat (limited to '')
-rw-r--r--src/core/hle/service/audio/audout_u.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/service/audio/audout_u.cpp b/src/core/hle/service/audio/audout_u.cpp
index 106e89743..dd80dd1dc 100644
--- a/src/core/hle/service/audio/audout_u.cpp
+++ b/src/core/hle/service/audio/audout_u.cpp
@@ -71,7 +71,7 @@ public:
stream = audio_core.OpenStream(system.CoreTiming(), audio_params.sample_rate,
audio_params.channel_count, std::move(unique_name),
- [=]() { buffer_event.writable->Signal(); });
+ [this] { buffer_event.writable->Signal(); });
}
private: