From be7d33fa2382889926158febb366a19af26a4371 Mon Sep 17 00:00:00 2001 From: Bill Kendrick Date: Fri, 21 Jan 2022 01:38:25 -0800 Subject: [PATCH] Mend broken star shape fill Was missing some array elements (but no warnings!?) h/t Shin-ichi for catching it --- src/shapes.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/shapes.h b/src/shapes.h index 388224642..2c71ccb44 100644 --- a/src/shapes.h +++ b/src/shapes.h @@ -146,6 +146,8 @@ const int shape_filled[NUM_SHAPES] = { 1, /* Triangle */ 0, /* Pentagon */ 1, /* Pentagon */ + 0, /* Hexagon */ + 1, /* Hexagon */ 0, /* Heptagon */ 1, /* Heptagon */ 0, /* Octagon */