X-Git-Url: https://git.distorted.org.uk/~mdw/sgt/puzzles/blobdiff_plain/b1535c90bf84c3fa916aa6d393ae83a79c4677d9..87f798e8857490072b15b559507ed8bc6303a4fa:/grid.c diff --git a/grid.c b/grid.c index 75887eb..dcc384a 100644 --- a/grid.c +++ b/grid.c @@ -643,8 +643,14 @@ static grid_dot *grid_dot_add_new(grid *g, int x, int y) * Assumes g->dots has enough capacity allocated */ static grid_dot *grid_get_dot(grid *g, tree234 *dot_list, int x, int y) { - grid_dot test = {0, NULL, NULL, x, y}; - grid_dot *ret = find234(dot_list, &test, NULL); + grid_dot test, *ret; + + test.order = 0; + test.edges = NULL; + test.faces = NULL; + test.x = x; + test.y = y; + ret = find234(dot_list, &test, NULL); if (ret) return ret;