From bcb108ae5f52a5c3b6a3cbee4c6b8f96f1f5cb8f Mon Sep 17 00:00:00 2001 From: IoI_xD Date: Wed, 25 Mar 2026 18:47:58 -0700 Subject: [PATCH] apple: 'more correct' polygons weren't correct at all --- src/backend/cocoa.m | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/src/backend/cocoa.m b/src/backend/cocoa.m index 114cb3a..57dea3b 100644 --- a/src/backend/cocoa.m +++ b/src/backend/cocoa.m @@ -245,11 +245,7 @@ static void recursive_dispatch_key_released(MwLL handle, int* k) { [nscolor setFill]; for(i = 0; i < points_count; i++) { NSPoint p = NSMakePoint(points[i].x, [self->view frame].size.height - points[i].y); - if((i % 3) == 0) { - if(i != 0) { - [path lineToPoint:p]; - [path fill]; - } + if(i == 0) { [path moveToPoint:p]; } else { [path lineToPoint:p];