From dc16ad374454ff6c2b6c169c0ab5df8df2165a07 Mon Sep 17 00:00:00 2001 From: "Unknown W. Brackets" Date: Sun, 27 Jul 2014 18:48:01 -0700 Subject: [PATCH] Report forwarding module load to loadexec. Shouldn't do this probably. --- 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 d692a2bc30..57ddbc3c4d 100644 --- a/Core/HLE/sceKernelModule.cpp +++ b/Core/HLE/sceKernelModule.cpp @@ -1702,7 +1702,7 @@ u32 sceKernelLoadModule(const char *name, u32 flags, u32 optionAddr) if (info.name == "BOOT.BIN") { - NOTICE_LOG(LOADER, "Module %s is blacklisted or undecryptable - we try __KernelLoadExec", name); + NOTICE_LOG_REPORT(LOADER, "Module %s is blacklisted or undecryptable - we try __KernelLoadExec", name); // Name might get deleted. const std::string safeName = name; return __KernelLoadExec(safeName.c_str(), 0, &error_string);