mirror of
https://github.com/libretro/ppsspp.git
synced 2025-01-27 11:41:49 +00:00
Update sceKernelModule.cpp
This commit is contained in:
parent
5e58594e21
commit
47ae4709ba
@ -69,6 +69,7 @@ enum {
|
||||
static const char *lieAboutSuccessModules[] = {
|
||||
"flash0:/kd/audiocodec.prx",
|
||||
"flash0:/kd/libatrac3plus.prx",
|
||||
"disc0:/PSP_GAME/SYSDIR/UPDATE/EBOOT.BIN",
|
||||
};
|
||||
|
||||
static const char *blacklistedModules[] = {
|
||||
@ -1409,6 +1410,12 @@ u32 sceKernelGetModuleId()
|
||||
u32 sceKernelFindModuleByName(const char *name)
|
||||
{
|
||||
ERROR_LOG_REPORT(HLE, "UNIMPL sceKernelFindModuleByName(%s)", name);
|
||||
|
||||
int index = GetModuleIndex(name);
|
||||
|
||||
if (index == -1)
|
||||
return 0;
|
||||
|
||||
return 1;
|
||||
}
|
||||
|
||||
@ -1549,4 +1556,4 @@ void Register_ModuleMgrForKernel()
|
||||
{
|
||||
RegisterModule("ModuleMgrForKernel", ARRAY_SIZE(ModuleMgrForKernel), ModuleMgrForKernel);
|
||||
|
||||
};
|
||||
};
|
||||
|
Loading…
x
Reference in New Issue
Block a user