WORKING VERSION FOR 42FileChecker test. All test passed !

This commit is contained in:
Manzovince
2019-05-09 12:46:59 +02:00
parent 1c6e41e8bf
commit 8a62783a6b
5 changed files with 40 additions and 31 deletions

View File

@@ -6,7 +6,7 @@
/* By: hulamy <hulamy@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2019/04/27 20:47:22 by hulamy #+# #+# */
/* Updated: 2019/05/08 18:38:47 by hulamy ### ########.fr */
/* Updated: 2019/05/08 19:38:23 by vmanzoni ### ########.fr */
/* */
/* ************************************************************************** */
@@ -155,8 +155,8 @@ void search_map(t_fillist *list)
// imression pour tests
print = tmp->tetribit;
print <<= 16;
print_map(&print, tmp->width, tmp->height, tmp->letter); // test, imprime le tetri
ft_putchar('\n');
// print_map(&print, tmp->width, tmp->height, tmp->letter); // test, imprime le tetri
// ft_putchar('\n');
tmp = tmp->next;
}
@@ -165,5 +165,5 @@ void search_map(t_fillist *list)
while (!fill_map(map, list, size, list))
map = init_map(size++);
print_final_map(list, size); // DEBUG
print_map(map, size, size, '#'); // DEBUG
// print_map(map, size, size, '#'); // DEBUG
}