From a004140ae8cfc83a3741efeed9ed867908d6a026 Mon Sep 17 00:00:00 2001 From: notaz Date: Tue, 5 Sep 2023 21:07:01 +0300 Subject: [PATCH] fix irq10 for the dynarec libretro/pcsx_rearmed#723 --- libpcsxcore/r3000a.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libpcsxcore/r3000a.c b/libpcsxcore/r3000a.c index 9b479362..df627251 100644 --- a/libpcsxcore/r3000a.c +++ b/libpcsxcore/r3000a.c @@ -264,7 +264,7 @@ static void psxScheduleIrq10One(u32 cycles_abs) { psxRegs.interrupt |= 1 << PSXINT_IRQ10; psxRegs.intCycle[PSXINT_IRQ10].cycle = c; psxRegs.intCycle[PSXINT_IRQ10].sCycle = rcnts[3].cycleStart; - new_dyna_set_event(PSXINT_IRQ10, c); + new_dyna_set_event_abs(PSXINT_IRQ10, cycles_abs); } void irq10Interrupt() { -- 2.39.2