@ -5,11 +5,9 @@
!Makefile
!README.md
!*.h
!includes/
!*.a
!lib/
!cub3d.h
!mlx_keycode.h
!*.cub
!maps/
@ -24,6 +24,7 @@ int cleanup_datas(t_env *env)
free(env->tex[3].file);
if (env->tex[4].file)
free(env->tex[4].file);
free(env);
return (1);
}
@ -39,6 +39,8 @@ int rgb_to_int(char **rgb)
while (c < 3 && rgb && colors)
{
colors = next_split(&i, colors, &rgb);
if (!colors || !colors[i])
continue ;
color = ft_atoi(colors[i++]);
if (color >= 0 && color < 256)
ret |= color << (8 * (2 - c++));