mirror of
https://github.com/Lime3DS/Lime3DS.git
synced 2026-04-29 23:41:05 -06:00
Fixed missing namespace
This commit is contained in:
parent
c4a99ccbe9
commit
6238f52819
@ -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 =
|
||||
|
||||
@ -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);
|
||||
|
||||
Loading…
Reference in New Issue
Block a user