From b26701370b773deded710187215a7db98513b941 Mon Sep 17 00:00:00 2001 From: notaz Date: Thu, 5 Sep 2013 02:19:18 +0300 Subject: [PATCH] fix blank line increment --- pico/draw.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pico/draw.c b/pico/draw.c index f2a8c9c..a03d887 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) -- 2.39.2