Eat some cycles in suspend/resume interrupt funcs.

These are really common, hope this doesn't have ill effects...
This commit is contained in:
Unknown W. Brackets 2013-05-28 01:30:49 -07:00
parent 8aa9483cbf
commit d24668c9c3

View File

@ -84,6 +84,7 @@ void sceKernelCpuSuspendIntr()
{
returnValue = 0;
}
hleEatCycles(15);
RETURN(returnValue);
}
@ -100,6 +101,7 @@ void sceKernelCpuResumeIntr(u32 enable)
{
__DisableInterrupts();
}
hleEatCycles(15);
}
void sceKernelIsCpuIntrEnable()