diff options
author | JozanLeClerc <bousset.rudy@gmail.com> | 2020-03-28 15:21:21 +0100 |
---|---|---|
committer | JozanLeClerc <bousset.rudy@gmail.com> | 2020-03-28 15:21:21 +0100 |
commit | c0264d533fc95639c8eeb570d131746f67d64fe9 (patch) | |
tree | a8e65f808c8c88060a3e22a130c8963e546619de /src/ft_init_map.c | |
parent | removed bloat (diff) | |
download | 42-cub3d-c0264d533fc95639c8eeb570d131746f67d64fe9.tar.gz 42-cub3d-c0264d533fc95639c8eeb570d131746f67d64fe9.tar.bz2 42-cub3d-c0264d533fc95639c8eeb570d131746f67d64fe9.tar.xz 42-cub3d-c0264d533fc95639c8eeb570d131746f67d64fe9.tar.zst 42-cub3d-c0264d533fc95639c8eeb570d131746f67d64fe9.zip |
Removed skybox related bloat
Diffstat (limited to '')
-rw-r--r-- | src/ft_init_map.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/ft_init_map.c b/src/ft_init_map.c index d252f2e..e0c232c 100644 --- a/src/ft_init_map.c +++ b/src/ft_init_map.c @@ -28,7 +28,6 @@ static int8_t !(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->skybox_path = (char*)ft_calloc(1, sizeof(char))) || !(mlist->traps_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))) || @@ -96,7 +95,6 @@ int8_t mlist->isctex = 0; mlist->isnlvl = 0; mlist->ismusic = 0; - mlist->isskybox = 0; mlist->istraps = 0; mlist->isheals = 0; mlist->traps_nbr = 0; |