Fixed missing namespace

This commit is contained in:
PTRCoder 2024-08-23 15:30:10 +02:00
parent c4a99ccbe9
commit 6238f52819
2 changed files with 2 additions and 2 deletions

View File

@ -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> thread = ctx.ClientThread();
std::shared_ptr<Kernel::Thread> thread = ctx.ClientThread();
auto current_process = thread->owner_process.lock();
auto context =

View File

@ -28,7 +28,7 @@ void NWM_INF::RecvBeaconBroadcastData(Kernel::HLERequestContext& ctx) {
}
Kernel::KernelSystem kernel = ctx.kernel;
std::shared_ptr<Thread> thread = ctx.ClientThread();
std::shared_ptr<Kernel::Thread> thread = ctx.ClientThread();
auto current_process = thread->owner_process.lock();
auto context =
std::make_shared<Kernel::HLERequestContext>(kernel, SharedFrom(this), thread);