diff options
Diffstat (limited to '')
-rw-r--r-- | src/ft_init_map.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/ft_init_map.c b/src/ft_init_map.c index 1c12189..457f241 100644 --- a/src/ft_init_map.c +++ b/src/ft_init_map.c @@ -25,6 +25,8 @@ static int8_t !(mlist->we_tex_path = (char*)ft_calloc(1, sizeof(char))) || !(mlist->sprite_path = (char*)ft_calloc(1, sizeof(char))) || !(mlist->nl_tex_path = (char*)ft_calloc(1, sizeof(char))) || + !(mlist->fl_tex_path = (char*)ft_calloc(1, sizeof(char))) || + !(mlist->ce_tex_path = (char*)ft_calloc(1, sizeof(char))) || !(mlist->nlevel_path = (char*)ft_calloc(1, sizeof(char))) || !(mlist->music_path = (char*)ft_calloc(1, sizeof(char))) || !(mlist->music_cmd = (char*)ft_calloc(1, sizeof(char))) || @@ -52,6 +54,8 @@ int8_t mlist->line_chk = 0; mlist->map_start = 0; mlist->isspawn = 0; + mlist->iftex = 0; + mlist->ictex = 0; mlist->isnlvl = 0; mlist->ismusic = 0; mlist->scale = 0; |