mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
Support kernal mode Module
Fix #5527 https://github.com/hrydgard/ppsspp/pull/5512/files No need
This commit is contained in:
parent
4e93573422
commit
8958501acb
1 changed files with 2 additions and 2 deletions
|
@ -1485,10 +1485,10 @@ u32 sceKernelLoadModule(const char *name, u32 flags, u32 optionAddr)
|
|||
return -1;
|
||||
}
|
||||
|
||||
// Module was blacklisted or couldn't be decrypted, which means it's a kernel module we don't want to run.
|
||||
// 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);
|
||||
return 1;
|
||||
return __KernelLoadExec(name, 0, &error_string);
|
||||
}
|
||||
|
||||
if (lmoption) {
|
||||
|
|
Loading…
Add table
Reference in a new issue