diff --git a/Core/HLE/sceKernel.cpp b/Core/HLE/sceKernel.cpp index 3ee15ed888..347a3a0970 100644 --- a/Core/HLE/sceKernel.cpp +++ b/Core/HLE/sceKernel.cpp @@ -670,19 +670,19 @@ int sceKernelReferGlobalProfiler(u32 statusPtr) { int ThreadManForKernel_446d8de6(const char *threadName, u32 entry, u32 prio, int stacksize, u32 attr, u32 optionAddr) { - WARN_LOG(SCEKERNEL,"Not support this patcher"); + WARN_LOG(SCEKERNEL,"ThreadManForKernel_446d8de6:Not support this patcher"); return sceKernelCreateThread(threadName, entry, prio, stacksize, attr, optionAddr); } int ThreadManForKernel_f475845d(SceUID threadToStartID, int argSize, u32 argBlockPtr) { - WARN_LOG(SCEKERNEL,"Not support this patcher"); + WARN_LOG(SCEKERNEL,"ThreadManForKernel_f475845d:Not support this patcher"); return sceKernelStartThread(threadToStartID,argSize,argBlockPtr); } int ThreadManForKernel_ceadeb47(u32 usec) { - WARN_LOG(SCEKERNEL,"Not support this patcher"); + WARN_LOG(SCEKERNEL,"ThreadManForKernel_ceadeb47:Not support this patcher"); return sceKernelDelayThread(usec); } diff --git a/Core/HLE/sceKernelModule.cpp b/Core/HLE/sceKernelModule.cpp index acd14ade12..e0efc36cef 100644 --- a/Core/HLE/sceKernelModule.cpp +++ b/Core/HLE/sceKernelModule.cpp @@ -1854,20 +1854,20 @@ u32 sceKernelGetModuleIdList(u32 resultBuffer, u32 resultBufferSize, u32 idCount u32 ModuleMgrForKernel_977de386(const char *name, u32 flags, u32 optionAddr) { - WARN_LOG(SCEMODULE,"Not support this patcher"); + WARN_LOG(SCEMODULE,"ModuleMgrForKernel_977de386:Not support this patcher"); return sceKernelLoadModule(name, flags, optionAddr); } void ModuleMgrForKernel_50f0c1ec(u32 moduleId, u32 argsize, u32 argAddr, u32 returnValueAddr, u32 optionAddr) { - WARN_LOG(SCEMODULE,"Not support this patcher"); + WARN_LOG(SCEMODULE,"ModuleMgrForKernel_50f0c1ec:Not support this patcher"); sceKernelStartModule(moduleId, argsize, argAddr, returnValueAddr, optionAddr); } //fix for tiger x dragon u32 ModuleMgrForKernel_a1a78c58(const char *name, u32 flags, u32 optionAddr) { - WARN_LOG(SCEMODULE,"Not support this patcher"); + WARN_LOG(SCEMODULE,"ModuleMgrForKernel_a1a78c58:Not support this patcher"); return sceKernelLoadModule(name, flags, optionAddr); }