From 6fe77e12f90647b317bf489642d9cee811e2b7af Mon Sep 17 00:00:00 2001 From: Pietro Gagliardi Date: Sat, 10 Oct 2015 21:04:54 -0400 Subject: [PATCH] More urgent TODOs. Groan... --- windows/draw.c | 1 + 1 file changed, 1 insertion(+) diff --git a/windows/draw.c b/windows/draw.c index a46086f9..eea83ac0 100644 --- a/windows/draw.c +++ b/windows/draw.c @@ -153,6 +153,7 @@ static void drawArc(uiDrawPath *p, struct arc *a, void (*startFunction)(uiDrawPa // as above, we can't do a full circle with one arc // simulate it with two half-circles + // TODO THIS ONLY WORKS ON THE ARCS TEST PAGE if (a->sweep >= (2 * M_PI)) { a->sweep = M_PI; drawArc(p, a, startFunction);