From d17f50e07bf689ece053a625059c236968ac0e56 Mon Sep 17 00:00:00 2001 From: sum2012 Date: Sun, 7 Jun 2020 18:28:09 +0800 Subject: [PATCH] Kill the log as @hrydgard suggest --- Core/HLE/sceKernelInterrupt.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Core/HLE/sceKernelInterrupt.cpp b/Core/HLE/sceKernelInterrupt.cpp index aafa7150eb..72d0c98da6 100644 --- a/Core/HLE/sceKernelInterrupt.cpp +++ b/Core/HLE/sceKernelInterrupt.cpp @@ -680,8 +680,7 @@ const HLEFunction Kernel_Library[] = {0XFA835CDE, &WrapI_I, "sceKernelGetTlsAddr", 'i', "i" }, }; -static u32 sysclib_memcpy(u32 dst, u32 src, u32 size) { - DEBUG_LOG(SCEKERNEL, "Untested sysclib_memcpy(dest=%08x, src=%08x, size=%i)", dst, src, size); +static u32 sysclib_memcpy(u32 dst, u32 src, u32 size) { if (Memory::IsValidRange(dst, size) && Memory::IsValidRange(src, size)) { memcpy(Memory::GetPointer(dst), Memory::GetPointer(src), size); }