diff options
author | Rudy Bousset <rbousset@z2r5p6.le-101.fr> | 2020-03-05 15:59:52 +0100 |
---|---|---|
committer | Rudy Bousset <rbousset@z2r5p6.le-101.fr> | 2020-03-05 15:59:52 +0100 |
commit | 3a346b70624949dcf7f4bec385c840441c6e3e31 (patch) | |
tree | ca47ed855d8464c35cc5ef892d120391bf1314ec /src/ft_check_map_surrounds.c | |
parent | Pretty cool (diff) | |
download | 42-cub3d-3a346b70624949dcf7f4bec385c840441c6e3e31.tar.gz 42-cub3d-3a346b70624949dcf7f4bec385c840441c6e3e31.tar.bz2 42-cub3d-3a346b70624949dcf7f4bec385c840441c6e3e31.tar.xz 42-cub3d-3a346b70624949dcf7f4bec385c840441c6e3e31.tar.zst 42-cub3d-3a346b70624949dcf7f4bec385c840441c6e3e31.zip |
Get normed
Diffstat (limited to 'src/ft_check_map_surrounds.c')
-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] == ' ' || |