From c43a34aaba114f486a62b80434405ce5d5918aef Mon Sep 17 00:00:00 2001 From: Ben Harris Date: Sun, 16 Nov 2025 14:01:13 +0000 Subject: [PATCH] Reduce MAXPOINTS a little whitepixel() now generates at most 16 points per pixel, not 20. --- bedstead.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bedstead.c b/bedstead.c index 52afbb3..5ca7ada 100644 --- a/bedstead.c +++ b/bedstead.c @@ -4348,7 +4348,7 @@ typedef struct point { struct vec v; } point; -#define MAXPOINTS (XSIZE * YSIZE * 20) +#define MAXPOINTS (XSIZE * YSIZE * 16) static point points[MAXPOINTS]; -- 2.30.2