diff --git a/Core/HLE/sceKernelModule.cpp b/Core/HLE/sceKernelModule.cpp index 53ec2195b6..441c4ad52a 100644 --- a/Core/HLE/sceKernelModule.cpp +++ b/Core/HLE/sceKernelModule.cpp @@ -1709,14 +1709,6 @@ static u32 sceKernelLoadModule(const char *name, u32 flags, u32 optionAddr) const std::string safeName = name; return __KernelLoadExec(safeName.c_str(), 0, &error_string); } - else if ((int)error >= 0) - { - // Module was blacklisted or couldn't be decrypted, which means it's a kernel module we don't want to run.. - // Let's just act as if it worked. - // TODO: Allocate an actual module? - NOTICE_LOG(LOADER, "Module %s is blacklisted or undecryptable - we lie about success", name); - return hleDelayResult(1, "module loaded", 500); - } else { ERROR_LOG(LOADER, "Module %s failed to load: %08x", name, error);