From e2101d5bd5f129cc9682f8df9bf3ecd752418a33 Mon Sep 17 00:00:00 2001 From: notaz Date: Wed, 26 Feb 2025 01:45:02 +0200 Subject: [PATCH] cdrom: adjust the t'ai hack --- libpcsxcore/cdrom.c | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/libpcsxcore/cdrom.c b/libpcsxcore/cdrom.c index 926e7eca..e52f74b8 100644 --- a/libpcsxcore/cdrom.c +++ b/libpcsxcore/cdrom.c @@ -624,11 +624,7 @@ static u32 cdrAlignTimingHack(u32 cycles) * Note: always enforcing this breaks other games like Crash PAL version * (inputs get dropped because bios handler doesn't see interrupts). */ - u32 vint_rel; - if (psxRegs.cycle - rcnts[3].cycleStart > 250000) - return cycles; - vint_rel = rcnts[3].cycleStart + 63000 - psxRegs.cycle; - vint_rel += PSXCLK / 60; + u32 vint_rel = rcnts[3].cycleStart + 63000 - psxRegs.cycle; while ((s32)(vint_rel - cycles) < 0) vint_rel += PSXCLK / 60; return vint_rel; -- 2.39.5