From b8a8cc0049c6e60d78f0cc07a0618b5e7bc23deb Mon Sep 17 00:00:00 2001 From: sum2012 Date: Fri, 21 Feb 2014 06:00:41 +0800 Subject: [PATCH] Update log information - menthion we try __KernelLoadExec --- 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 e92023db53..6b6bf7a3c2 100644 --- a/Core/HLE/sceKernelModule.cpp +++ b/Core/HLE/sceKernelModule.cpp @@ -1487,7 +1487,7 @@ u32 sceKernelLoadModule(const char *name, u32 flags, u32 optionAddr) // Module was blacklisted or couldn't be decrypted, which means it's a kernel module. // Let's just act as if it worked. - NOTICE_LOG(LOADER, "Module %s is blacklisted or undecryptable - we lie about success", name); + NOTICE_LOG(LOADER, "Module %s is blacklisted or undecryptable - we try __KernelLoadExec", name); return __KernelLoadExec(name, 0, &error_string); }