summaryrefslogtreecommitdiffhomepage
path: root/examples/shapes/shapes_easings_rectangle_array.c
diff options
context:
space:
mode:
Diffstat (limited to 'examples/shapes/shapes_easings_rectangle_array.c')
-rw-r--r--examples/shapes/shapes_easings_rectangle_array.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/shapes/shapes_easings_rectangle_array.c b/examples/shapes/shapes_easings_rectangle_array.c
index 9844af6a..07de98a0 100644
--- a/examples/shapes/shapes_easings_rectangle_array.c
+++ b/examples/shapes/shapes_easings_rectangle_array.c
@@ -33,7 +33,7 @@ int main(void)
InitWindow(screenWidth, screenHeight, "raylib [shapes] example - easings rectangle array");
- Rectangle recs[MAX_RECS_X*MAX_RECS_Y];
+ Rectangle recs[MAX_RECS_X*MAX_RECS_Y] = { 0 };
for (int y = 0; y < MAX_RECS_Y; y++)
{