From 6238f52819bddd313d834978493fdf0066de6340 Mon Sep 17 00:00:00 2001 From: PTRCoder Date: Fri, 23 Aug 2024 15:30:10 +0200 Subject: [PATCH] Fixed missing namespace --- src/core/hle/service/ac/ac.cpp | 2 +- src/core/hle/service/nwm/nwm_inf.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/core/hle/service/ac/ac.cpp b/src/core/hle/service/ac/ac.cpp index 9d95a6e5f..c729480ef 100644 --- a/src/core/hle/service/ac/ac.cpp +++ b/src/core/hle/service/ac/ac.cpp @@ -219,7 +219,7 @@ void Module::Interface::ScanAPs(Kernel::HLERequestContext& ctx) { cmd_buf[19] = buffer_id; Kernel::KernelSystem kernel = ctx.kernel; - std::shared_ptr thread = ctx.ClientThread(); + std::shared_ptr thread = ctx.ClientThread(); auto current_process = thread->owner_process.lock(); auto context = diff --git a/src/core/hle/service/nwm/nwm_inf.cpp b/src/core/hle/service/nwm/nwm_inf.cpp index 27100ee91..dfc199851 100644 --- a/src/core/hle/service/nwm/nwm_inf.cpp +++ b/src/core/hle/service/nwm/nwm_inf.cpp @@ -28,7 +28,7 @@ void NWM_INF::RecvBeaconBroadcastData(Kernel::HLERequestContext& ctx) { } Kernel::KernelSystem kernel = ctx.kernel; - std::shared_ptr thread = ctx.ClientThread(); + std::shared_ptr thread = ctx.ClientThread(); auto current_process = thread->owner_process.lock(); auto context = std::make_shared(kernel, SharedFrom(this), thread);