From 65e9f3302c4f24d15048a7846787485dc9a66a4e Mon Sep 17 00:00:00 2001 From: "Adam D. Ruppe" Date: Fri, 24 Sep 2021 09:04:27 -0400 Subject: [PATCH] debugging writeln lolol --- simpledisplay.d | 2 -- 1 file changed, 2 deletions(-) diff --git a/simpledisplay.d b/simpledisplay.d index 90cd8ce..0540ab9 100644 --- a/simpledisplay.d +++ b/simpledisplay.d @@ -10209,8 +10209,6 @@ version(Windows) { auto c2 = cast(int)(-sin(startAngle) * height / 2 + y1 + height / 2); auto c3 = cast(int)(cos(endAngle) * width / 2 + x1 + width / 2); auto c4 = cast(int)(-sin(endAngle) * height / 2 + y1 + height / 2); - import std.stdio; writeln(c1, " ", c2, " ", c3, " ", c4); - if(_activePen.color.a) Arc(hdc, x1, y1, x1 + width + 1, y1 + height + 1, c1, c2, c3, c4);