diff --git a/sk1a/maze.c b/sk1a/maze.c index d843731..9388639 100644 --- a/sk1a/maze.c +++ b/sk1a/maze.c @@ -108,7 +108,7 @@ int solve_maze(char* maze, int size) { } } - //cleanup redundant routes + //cleanuup redundant routes for (int y = size - 2; y >= 0; y--) { for (int x = size - 2; x >= 0; x--) { if (maze2d[y][x] == '*' && maze2d[y + 1][x] == '*' && maze2d[y + 1][x + 1] == '*' && maze2d[y][x + 1] == '*') {