/* ************************************************************************** */
/*                                                          LE - /            */
/*                                                              /             */
/*   ft_map_error.c                                   .::    .:/ .      .::   */
/*                                                 +:+:+   +:    +:  +:+:+    */
/*   By: rbousset <marvin@le-101.fr>                +:+   +:    +:    +:+     */
/*                                                 #+#   #+    #+    #+#      */
/*   Created: 2020/02/02 17:19:30 by rbousset     #+#   ##    ##    #+#       */
/*   Updated: 2020/02/02 17:19:30 by rbousset    ###    #+. /#+    ###.fr     */
/*                                                         /                  */
/*                                                        /                   */
/* ************************************************************************** */

#include <libft.h>
#include <cub3d.h>
#include <unistd.h>

int
	ft_map_error(t_cub *clist)
{
	ft_dprintf(STDERR_FILENO, "Error\n");
	ft_dprintf(STDERR_FILENO,
		"\033[1;31mMap error: line %zu\033[0m\n", clist->line_chk);
	return (ft_exit(1, clist));
}