From 6c6b97d92e533a27d5594e7bffed3e739bc9b13c Mon Sep 17 00:00:00 2001 From: IoIxD Date: Sun, 19 Jul 2026 23:06:26 -0700 Subject: [PATCH] classicmacos: remove dupl setrgb/penmode call --- src/backend/classicmacos.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/backend/classicmacos.c b/src/backend/classicmacos.c index 956e1e0..d3da454 100644 --- a/src/backend/classicmacos.c +++ b/src/backend/classicmacos.c @@ -52,9 +52,6 @@ static void MwLLPolygonImpl(MwLL handle, MwPoint* points, int points_count, MwLL col.green = color->common.green * 0x101; col.blue = color->common.blue * 0x101; - RGBForeColor(&col); - PenMode(patCopy); - for(i = 0; i < points_count; i++) { if(i == 0) { MoveTo(points[i].x, points[i].y);