From 806781a11074e389236c5106b55764b7916fee6d Mon Sep 17 00:00:00 2001 From: georgemoralis Date: Sun, 5 May 2024 12:59:26 +0300 Subject: [PATCH] dummy ksernelMunmap (allows we are doomed to progress further) --- src/core/libraries/kernel/libkernel.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/core/libraries/kernel/libkernel.cpp b/src/core/libraries/kernel/libkernel.cpp index cda684333..2659a6f7c 100644 --- a/src/core/libraries/kernel/libkernel.cpp +++ b/src/core/libraries/kernel/libkernel.cpp @@ -43,7 +43,8 @@ static PS4_SYSV_ABI void stack_chk_fail() { } int PS4_SYSV_ABI sceKernelMunmap(void* addr, size_t len) { - UNREACHABLE(); + LOG_ERROR(Kernel_Vmm ,"(DUMMY) called"); + return SCE_OK; } void PS4_SYSV_ABI sceKernelUsleep(unsigned int microseconds) {