From 45457406f7e0673084bfc7c8de8c8a86db843f2d Mon Sep 17 00:00:00 2001 From: kub Date: Sat, 8 Feb 2025 17:36:13 +0100 Subject: [PATCH] 32x, fix regression for fastest renderer --- pico/32x/32x.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pico/32x/32x.c b/pico/32x/32x.c index b5ef0916..8db3a6d0 100644 --- a/pico/32x/32x.c +++ b/pico/32x/32x.c @@ -271,7 +271,8 @@ static void Pico32xRenderSync(int lines) void Pico32xDrawSync(SH2 *sh2) { - if (sh2) { + // the fast renderer isn't operating on a line-by-line base + if (sh2 && !(PicoIn.opt & POPT_ALT_RENDERER)) { unsigned int cycle = (sh2 ? sh2_cycles_done_m68k(sh2) : SekCyclesDone()); int line = ((cycle - Pico.t.m68c_frame_start) * (long long)((1LL<<32)/488.5)) >> 32; @@ -279,7 +280,7 @@ void Pico32xDrawSync(SH2 *sh2) // make sure the MD image is also sync'ed to this line for merging PicoDrawSync(line, 0, 0); - // pfff... need to save and restore some persistent data for MD + // pfff... need to save and restore some persistent data for MD renderer void *dest = Pico.est.DrawLineDest; int incr = Pico.est.DrawLineDestIncr; Pico32xRenderSync(line); -- 2.39.5