no flood fill I guess

This commit is contained in:
Theo Champion 2025-06-20 19:54:20 +02:00
parent b30dda9c62
commit 9ba3771ebf

View file

@ -6,7 +6,7 @@
/* By: tchampio <tchampio@student.42lehavre. +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2025/06/06 17:54:42 by tchampio #+# #+# */
/* Updated: 2025/06/20 19:45:07 by tchampio ### ########.fr */
/* Updated: 2025/06/20 19:53:53 by tchampio ### ########.fr */
/* */
/* ************************************************************************** */
@ -314,8 +314,5 @@ bool check_cubfile(char *file, t_mapdata *map)
"Map is malformed (invalid chars or missing walls)", 51), false);
if (!check_bare_minimum(map))
return (close(fd), false);
// if (!flood_fill(map->mapflood))
// return (close(fd), ft_strlcpy(map->error,
// "Map is not possible (flood fill failed)", 41), false);
return (true);
}