From b9981d879baab20f0d55400437ef0885f1794070 Mon Sep 17 00:00:00 2001 From: Bill Kendrick Date: Sat, 1 Jun 2024 20:27:30 -0700 Subject: [PATCH] Filled Polygon Magic - allow up to 100 points Up from 17 (which I probably picked since it was a little fewer than the default number of Undo/Redo levels). --- magic/src/polyfill.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/magic/src/polyfill.c b/magic/src/polyfill.c index 25e4cc436..4afaebd3a 100644 --- a/magic/src/polyfill.c +++ b/magic/src/polyfill.c @@ -61,7 +61,7 @@ char *polyfill_snd_filenames[NUM_SOUNDS] = { #define SNAP_SIZE 16 -#define MAX_PTS 17 +#define MAX_PTS 100 SDL_Surface *polyfill_snapshot = NULL; int polyfill_pt_x[MAX_PTS];