diff --git a/get_next_line/get_next_line.a b/get_next_line/get_next_line.a deleted file mode 100644 index 386d289..0000000 Binary files a/get_next_line/get_next_line.a and /dev/null differ diff --git a/get_next_line/get_next_line.o b/get_next_line/get_next_line.o deleted file mode 100644 index f93ff55..0000000 Binary files a/get_next_line/get_next_line.o and /dev/null differ diff --git a/get_next_line/get_next_line_utils.o b/get_next_line/get_next_line_utils.o deleted file mode 100644 index 7a8cc4b..0000000 Binary files a/get_next_line/get_next_line_utils.o and /dev/null differ diff --git a/print_map.c b/print_map.c index fe60397..083864c 100644 --- a/print_map.c +++ b/print_map.c @@ -6,7 +6,7 @@ /* By: adjoly +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2024/01/09 15:30:06 by adjoly #+# #+# */ -/* Updated: 2024/01/09 16:52:59 by adjoly ### ########.fr */ +/* Updated: 2024/01/10 10:40:19 by adjoly ### ########.fr */ /* */ /* ************************************************************************** */ @@ -18,7 +18,7 @@ void ft_putimg(int x, int y, t_window *win, char *file_path) { int img_x; int img_y; - + img_x = 0; img_y = 0; ft_putstr_fd(file_path, 1); @@ -48,7 +48,7 @@ int ft_printmap(char **map, void *param) ft_putimg(x, y, win, "assets/obj.png"); else if (map[y][x] == 'E') ft_putimg(x, y, win, "assets/exit.png"); - else if (map[y][x] == 'P') + else if (map[y][x] == 'P') ft_putimg(x, y, win, "assets/player.png"); x++; }