From 5312459d167e64d9d0ecb5c7507124f96e669eb4 Mon Sep 17 00:00:00 2001 From: Zeno Rogue Date: Sun, 8 Nov 2020 11:51:36 +0100 Subject: [PATCH] fixed SLR graphical duplication needlessly called outside of SLR --- drawing.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drawing.cpp b/drawing.cpp index ea7ac307..8d06f74e 100644 --- a/drawing.cpp +++ b/drawing.cpp @@ -1741,7 +1741,7 @@ void dqi_poly::draw() { if(flags & POLY_ONE_LEVEL) min_slr = max_slr = 0; max_slr++; } - else min_slr = 0, max_slr = 1; + else min_slr = 0, max_slr = 0; set_width(get_width(this)); flags &= ~POLY_INVERSE; gldraw();