From: Toni Wilen Date: Sun, 29 Sep 2024 16:31:34 +0000 (+0300) Subject: Check interlace mode field type when calculating screenshot height. X-Git-Tag: 5310~8 X-Git-Url: https://git.unchartedbackwaters.co.uk/w/?a=commitdiff_plain;h=5b968a66a5a26aced32aa56adef29e065b30fd22;p=francis%2Fwinuae.git Check interlace mode field type when calculating screenshot height. --- diff --git a/drawing.cpp b/drawing.cpp index 7c24c4fd..70e491f3 100644 --- a/drawing.cpp +++ b/drawing.cpp @@ -631,6 +631,9 @@ int get_vertical_visible_height(bool useoldsize) if (hardwired) { get_vblanking_limits(&vbstrt, &vbstop, true); int hh = vbstop - vbstrt; + if (interlace_seen && !lof_store) { + hh++; + } if (h > hh) { h = hh; }