From e47d9af7501c6c7cec2069668d5f09c506827c2f Mon Sep 17 00:00:00 2001 From: PTRCoder Date: Fri, 23 Aug 2024 19:54:04 +0200 Subject: [PATCH] Additional logging --- src/core/hle/service/ac/ac.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/core/hle/service/ac/ac.cpp b/src/core/hle/service/ac/ac.cpp index 9125e8c3b..64ae96a77 100644 --- a/src/core/hle/service/ac/ac.cpp +++ b/src/core/hle/service/ac/ac.cpp @@ -220,12 +220,15 @@ void Module::Interface::ScanAPs(Kernel::HLERequestContext& ctx) { cmd_buf[18] = (size << 4) | 12; // should be considered correct for mapped buffer cmd_buf[19] = 0; // if i interpreted the code correctly, this value won't matter + LOG_WARNING(Service_AC, "Finished setting up command buffer"); std::shared_ptr thread = ctx.ClientThread(); auto current_process = thread->owner_process.lock(); + LOG_WARNING(Service_AC, "Retrieved thread and process"); auto context = std::make_shared(Core::System::GetInstance().Kernel(), ctx.Session(), thread); + LOG_WARNING(Service_AC, "Created context"); context->PopulateFromIncomingCommandBuffer(cmd_buf.data(), current_process); LOG_WARNING(Service_AC, "Finished setting up context");