From d4ffcd0a36bbf2f3693a2899fcb5f78eea508175 Mon Sep 17 00:00:00 2001 From: notaz Date: Sun, 12 Apr 2026 02:47:54 +0300 Subject: [PATCH] db: another hack for lightrec libretro/pcsx_rearmed#876 --- libpcsxcore/database.c | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/libpcsxcore/database.c b/libpcsxcore/database.c index a159b28d..c56d2cf9 100644 --- a/libpcsxcore/database.c +++ b/libpcsxcore/database.c @@ -163,7 +163,12 @@ cycle_multiplier_overrides[] = /* Vib-Ribbon - cd timing issues (PAL+ari64drc only?) */ { 200, { "SCES02873" } }, /* Zero Divide - sometimes too fast */ - { 200, { "SLUS00183", "SLES00159", "SLPS00083", "SLPM80008" } }, +#ifdef LIGHTREC + { 222, // missing gte stalling +#else + { 200, +#endif + { "SLUS00183", "SLES00159", "SLPS00083", "SLPM80008" } }, /* Eagle One: Harrier Attack - hangs (but not in standalone build?) */ { 153, { "SLUS00943" } }, /* Sol Divide: FMV timing */ -- 2.47.3