From ca6ed2eff20573dedeb71898724d851f42deb323 Mon Sep 17 00:00:00 2001 From: Zeno Rogue Date: Fri, 9 Nov 2018 20:50:08 +0100 Subject: [PATCH] svg:: fixed circles --- screenshot.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/screenshot.cpp b/screenshot.cpp index 63d70817..f1fb76d3 100644 --- a/screenshot.cpp +++ b/screenshot.cpp @@ -72,7 +72,7 @@ namespace svg { } void circle(int x, int y, int size, color_t col, color_t fillcol) { - if(!invisible(col) && !invisible(fillcol)) { + if(!invisible(col) || !invisible(fillcol)) { if(vid.stretch == 1) fprintf(f, "\n", coord(x), coord(y), coord(size), stylestr(fillcol, col));