From 292380021742d17e3bd732a4f0d15d97dd9b9a63 Mon Sep 17 00:00:00 2001 From: "Unknown W. Brackets" Date: Mon, 1 Sep 2014 21:12:13 -0700 Subject: [PATCH] Eat some cycles when starting a thread. Seems to improve a test a bit, based on tests. --- Core/HLE/sceKernelThread.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/Core/HLE/sceKernelThread.cpp b/Core/HLE/sceKernelThread.cpp index a2fc29fe56..2463778101 100644 --- a/Core/HLE/sceKernelThread.cpp +++ b/Core/HLE/sceKernelThread.cpp @@ -2274,6 +2274,7 @@ int sceKernelStartThread(SceUID threadToStartID, int argSize, u32 argBlockPtr) } INFO_LOG(SCEKERNEL, "sceKernelStartThread(thread=%i, argSize=%i, argPtr=%08x)", threadToStartID, argSize, argBlockPtr); + hleEatCycles(3400); return __KernelStartThread(threadToStartID, argSize, argBlockPtr); }