From c4a99ccbe9ee6468c47f365d485ca204f23cbbd9 Mon Sep 17 00:00:00 2001 From: PTRCoder Date: Fri, 23 Aug 2024 15:29:29 +0200 Subject: [PATCH] Fixed missing argument --- src/core/hle/service/nwm/nwm_inf.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/hle/service/nwm/nwm_inf.cpp b/src/core/hle/service/nwm/nwm_inf.cpp index 497075325..27100ee91 100644 --- a/src/core/hle/service/nwm/nwm_inf.cpp +++ b/src/core/hle/service/nwm/nwm_inf.cpp @@ -31,7 +31,7 @@ void NWM_INF::RecvBeaconBroadcastData(Kernel::HLERequestContext& ctx) { std::shared_ptr thread = ctx.ClientThread(); auto current_process = thread->owner_process.lock(); auto context = - std::make_shared(kernel, SharedFrom(this), /* TODO */); + std::make_shared(kernel, SharedFrom(this), thread); context->PopulateFromIncomingCommandBuffer(cmd_buf.data(), current_process); auto nwm_uds = Core::System::GetInstance().ServiceManager().GetService("nwm::UDS");