diff options
author | JozanLeClerc <bousset.rudy@gmail.com> | 2020-01-28 16:22:51 +0100 |
---|---|---|
committer | JozanLeClerc <bousset.rudy@gmail.com> | 2020-01-28 16:22:51 +0100 |
commit | 6ee3017b31456ae8bcf4f21389e514b67d885098 (patch) | |
tree | 39a8354d65268b607d110c67deee9faac081cb5d /src/ft_parse_map.c | |
parent | Bug fix (diff) | |
download | 42-cub3d-6ee3017b31456ae8bcf4f21389e514b67d885098.tar.gz 42-cub3d-6ee3017b31456ae8bcf4f21389e514b67d885098.tar.bz2 42-cub3d-6ee3017b31456ae8bcf4f21389e514b67d885098.tar.xz 42-cub3d-6ee3017b31456ae8bcf4f21389e514b67d885098.tar.zst 42-cub3d-6ee3017b31456ae8bcf4f21389e514b67d885098.zip |
Got tex
Diffstat (limited to 'src/ft_parse_map.c')
-rw-r--r-- | src/ft_parse_map.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ft_parse_map.c b/src/ft_parse_map.c index dfa1ba6..7704ff2 100644 --- a/src/ft_parse_map.c +++ b/src/ft_parse_map.c @@ -91,7 +91,7 @@ ft_parse_map(const char *map_path, t_cub *clist) ret = 1; while (ret != 12) ret = ft_parse_it(fd, clist); - ft_get_map(void); + /* ft_get_map(void); */ /* if (ft_get_tex(fd, clist) < 0) */ /* return ; */ /* ft_check_empty_line(fd, 6, clist); */ @@ -102,6 +102,6 @@ ft_parse_map(const char *map_path, t_cub *clist) /* if (ft_get_map(fd, clist) < 0) */ /* ft_map_error(11, clist); */ /* ft_check_map_last_line(clist); */ - /* ft_print_list(clist); */ + ft_print_list(clist); close(fd); } |