Reduce MAXPOINTS a little

whitepixel() now generates at most 16 points per pixel, not 20.
This commit is contained in:
Ben Harris 2025-11-16 14:01:13 +00:00
parent ce6d060613
commit c43a34aaba

View File

@ -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];