mirror of
https://github.com/cemu-project/Cemu.git
synced 2025-04-29 14:59:26 -04:00
PPCRec: Fix compile error after rebase
This commit is contained in:
parent
e85a9a57e3
commit
ec107973f0
1 changed files with 2 additions and 2 deletions
|
@ -384,12 +384,12 @@ bool PPCRecompilerImlGen_MFSPR(ppcImlGenContext_t* ppcImlGenContext, uint32 opco
|
||||||
|
|
||||||
ATTR_MS_ABI uint32 PPCRecompiler_GetTBL()
|
ATTR_MS_ABI uint32 PPCRecompiler_GetTBL()
|
||||||
{
|
{
|
||||||
return (uint32)coreinit::coreinit_getTimerTick();
|
return (uint32)coreinit::OSGetSystemTime();
|
||||||
}
|
}
|
||||||
|
|
||||||
ATTR_MS_ABI uint32 PPCRecompiler_GetTBU()
|
ATTR_MS_ABI uint32 PPCRecompiler_GetTBU()
|
||||||
{
|
{
|
||||||
return (uint32)(coreinit::coreinit_getTimerTick() >> 32);
|
return (uint32)(coreinit::OSGetSystemTime() >> 32);
|
||||||
}
|
}
|
||||||
|
|
||||||
bool PPCRecompilerImlGen_MFTB(ppcImlGenContext_t* ppcImlGenContext, uint32 opcode)
|
bool PPCRecompilerImlGen_MFTB(ppcImlGenContext_t* ppcImlGenContext, uint32 opcode)
|
||||||
|
|
Loading…
Add table
Reference in a new issue