diff options
-rw-r--r-- | src/ft_init_lists.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ft_init_lists.c b/src/ft_init_lists.c index 54a7902..63357ec 100644 --- a/src/ft_init_lists.c +++ b/src/ft_init_lists.c @@ -33,7 +33,7 @@ t_cub !(clist->we_tex_path = (char*)ft_calloc(1, sizeof(char))) || !(clist->sprite_path = (char*)ft_calloc(1, sizeof(char))) || !(clist->map = (char**)ft_calloc(2, sizeof(char*))) || - !(clist->map[0] = (char*)ft_calloc(1, sizeof(char)))) + !(clist->map[0] = (char*)ft_calloc(1, sizeof(char)))) return (NULL); clist->map[1] = 0; clist->f_color = -1; |