From: notaz Date: Sat, 25 Jan 2025 00:52:07 +0000 (+0200) Subject: standalone: fix missed y scaling X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=16b099b434b1971f71c1023b56833721004d8104;p=pcsx_rearmed.git standalone: fix missed y scaling --- diff --git a/frontend/plugin_lib.c b/frontend/plugin_lib.c index e12a7981..9b2fee34 100644 --- a/frontend/plugin_lib.c +++ b/frontend/plugin_lib.c @@ -336,7 +336,7 @@ static void pl_vout_flip(const void *vram, int stride, int bgr24, // offset xoffs = x * pl_vout_scale_w; - doffs = xoffs + y * dstride; + doffs = xoffs + y * pl_vout_scale_h * dstride; if (dims_changed) flip_clear_counter = 3;