PPCRec: Fix compile error after rebase

This commit is contained in:
Exzap 2025-04-26 00:56:45 +02:00
parent e85a9a57e3
commit ec107973f0

View file

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