From: Ben Harris Date: Sun, 16 Nov 2025 14:01:13 +0000 (+0000) Subject: Reduce MAXPOINTS a little X-Git-Tag: bedstead-3.261~19 X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~bjharris/git?a=commitdiff_plain;h=c43a34aaba114f486a62b80434405ce5d5918aef;p=bedstead.git Reduce MAXPOINTS a little whitepixel() now generates at most 16 points per pixel, not 20. --- 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];