diff options
Diffstat (limited to '')
-rw-r--r-- | src/ft_check_map_surrounds.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ft_check_map_surrounds.c b/src/ft_check_map_surrounds.c index 4b3f236..2bf228c 100644 --- a/src/ft_check_map_surrounds.c +++ b/src/ft_check_map_surrounds.c @@ -16,7 +16,7 @@ #include <stdint.h> static int8_t - ft_wall_check(size_t y, size_t x, char** const map) + ft_wall_check(size_t y, size_t x, char **map) { if (map[y + 1][x] == ' ' || map[y - 1][x] == ' ' || |