From c1fdb5fc5bc7e16beedbc41f195a95bfb704bc99 Mon Sep 17 00:00:00 2001 From: "Unknown W. Brackets" Date: Sat, 24 May 2014 17:15:25 -0700 Subject: [PATCH] Might as well allow imports to blacklisted. If someone's trying to read their code. --- Core/HLE/sceKernelModule.cpp | 6 ------ 1 file changed, 6 deletions(-) diff --git a/Core/HLE/sceKernelModule.cpp b/Core/HLE/sceKernelModule.cpp index f094095092..36b5f0d376 100644 --- a/Core/HLE/sceKernelModule.cpp +++ b/Core/HLE/sceKernelModule.cpp @@ -282,9 +282,6 @@ public: void Cleanup(); void ImportFunc(const FuncSymbolImport &func) { - if (isFake) { - return; - } if (!Memory::IsValidAddress(func.stubAddr)) { WARN_LOG_REPORT(LOADER, "Invalid address for syscall stub %s %08x", func.moduleName, func.nid); return; @@ -304,9 +301,6 @@ public: } void ImportVar(const VarSymbolImport &var) { - if (isFake) { - return; - } // Keep track and actually hook it up if possible. importedVars.push_back(var); impExpModuleNames.insert(var.moduleName);