From: notaz Date: Wed, 4 Sep 2013 23:19:18 +0000 (+0300) Subject: fix blank line increment X-Git-Tag: v1.90~19 X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b26701370b773deded710187215a7db98513b941;p=picodrive.git fix blank line increment --- diff --git a/pico/draw.c b/pico/draw.c index f2a8c9ce..a03d8873 100644 --- a/pico/draw.c +++ b/pico/draw.c @@ -1457,6 +1457,9 @@ static void DrawBlankedLine(int line, int offs, int sh, int bgc) if (PicoScanEnd != NULL) PicoScanEnd(line + offs); + + HighCol += HighColIncrement; + DrawLineDest = (char *)DrawLineDest + DrawLineDestIncrement; } static void PicoLine(int line, int offs, int sh, int bgc)