Eat some cycles when starting a thread.

Seems to improve a test a bit, based on tests.
This commit is contained in:
Unknown W. Brackets 2014-09-01 21:12:13 -07:00
parent 84231c0188
commit 2923800217

View file

@ -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);
}