mirror of
https://github.com/hrydgard/ppsspp.git
synced 2024-11-28 16:00:58 +00:00
Eat some cycles in suspend/resume interrupt funcs.
These are really common, hope this doesn't have ill effects...
This commit is contained in:
parent
8aa9483cbf
commit
d24668c9c3
@ -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()
|
||||
|
Loading…
Reference in New Issue
Block a user