From ec107973f0e3e930bf2ba695842304142b731dfc Mon Sep 17 00:00:00 2001 From: Exzap <13877693+Exzap@users.noreply.github.com> Date: Sat, 26 Apr 2025 00:56:45 +0200 Subject: [PATCH] PPCRec: Fix compile error after rebase --- src/Cafe/HW/Espresso/Recompiler/PPCRecompilerImlGen.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Cafe/HW/Espresso/Recompiler/PPCRecompilerImlGen.cpp b/src/Cafe/HW/Espresso/Recompiler/PPCRecompilerImlGen.cpp index 5ea424d3..c1e03b1d 100644 --- a/src/Cafe/HW/Espresso/Recompiler/PPCRecompilerImlGen.cpp +++ b/src/Cafe/HW/Espresso/Recompiler/PPCRecompilerImlGen.cpp @@ -384,12 +384,12 @@ bool PPCRecompilerImlGen_MFSPR(ppcImlGenContext_t* ppcImlGenContext, uint32 opco ATTR_MS_ABI uint32 PPCRecompiler_GetTBL() { - return (uint32)coreinit::coreinit_getTimerTick(); + return (uint32)coreinit::OSGetSystemTime(); } 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)