Log the name of started modules

This commit is contained in:
Henrik Rydgård
2025-06-26 13:23:15 +02:00
parent 4ad10d9386
commit b9b3669798
+1 -1
View File
@@ -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);
}
}