aboutsummaryrefslogtreecommitdiffstats
path: root/src/ft_map_error.c
blob: bffb6d166ef1ce7e0275fb6e29c803db075e9e03 (plain)
1
2
3
4
5
6
7
8
9
#include <libft.h>
#include <cub3d.h>

int
ft_map_error(unsigned int line)
{
	ft_printf("\033[1;31mMap error: line %d\033[0m\n", line);
	return (ft_exit(1));
}