From ac7bfcb6efa5b5245c4f9601f650d97ef00d6836 Mon Sep 17 00:00:00 2001 From: "Unknown W. Brackets" Date: Sat, 25 May 2013 20:43:47 -0700 Subject: [PATCH] Report unfinished code in sceKernelAllocateTls(). --- Core/HLE/sceKernelMemory.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Core/HLE/sceKernelMemory.cpp b/Core/HLE/sceKernelMemory.cpp index 59f99c68a5..af43bc7997 100644 --- a/Core/HLE/sceKernelMemory.cpp +++ b/Core/HLE/sceKernelMemory.cpp @@ -1458,7 +1458,7 @@ int sceKernelDeleteTls(SceUID uid) int sceKernelAllocateTls(SceUID uid) { // TODO: Allocate downward if PSP_TLS_ATTR_HIGHMEM? - WARN_LOG(HLE, "UNIMPL sceKernelAllocateTls(%08x)", uid); + DEBUG_LOG(HLE, "sceKernelAllocateTls(%08x)", uid); u32 error; TLS *tls = kernelObjects.Get(uid, error); if (tls) @@ -1493,7 +1493,7 @@ int sceKernelAllocateTls(SceUID uid) if (allocBlock == -1) { // TODO: Wait here, wake when one is free. - ERROR_LOG(HLE, "sceKernelAllocateTls: should wait"); + ERROR_LOG_REPORT(HLE, "sceKernelAllocateTls: should wait"); return -1; }