From b9b3669798fab58fca86309a4ac652e97cd98116 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Henrik=20Rydg=C3=A5rd?= Date: Thu, 26 Jun 2025 13:23:15 +0200 Subject: [PATCH] Log the name of started modules --- Core/HLE/sceKernelModule.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Core/HLE/sceKernelModule.cpp b/Core/HLE/sceKernelModule.cpp index fb2970a936..78f559d89a 100644 --- a/Core/HLE/sceKernelModule.cpp +++ b/Core/HLE/sceKernelModule.cpp @@ -2074,7 +2074,7 @@ static u32 sceKernelStartModule(u32 moduleId, u32 argsize, u32 argAddr, u32 retu module->nm.status = MODULE_STATUS_STARTING; module->waitingThreads.push_back(mwt); } - return hleLogInfo(Log::sceModule, ret); + return hleLogInfo(Log::sceModule, ret, "'%.*s'", (int)sizeof(module->nm.name), module->nm.name); } }