From 59a1ecb7b5918034719c491f1a629cbeba068066 Mon Sep 17 00:00:00 2001 From: badda71 Date: Thu, 30 Apr 2020 12:02:49 +0200 Subject: [PATCH] small bugfix --- src/drawing.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/drawing.cpp b/src/drawing.cpp index 84a3bab..9bff474 100644 --- a/src/drawing.cpp +++ b/src/drawing.cpp @@ -2059,7 +2059,7 @@ static _INLINE_ void finish_drawing_frame (void) if (where >= GFXVIDINFO_HEIGHT) break; //#endif - if (where == -1) + if (where < 0) continue; pfield_draw_line (line, where, amiga2aspect_line_map[i1 + 1]); }