diff options
author | Rudy Bousset <rbousset@z2r4p3.le-101.fr> | 2020-03-09 23:08:39 +0100 |
---|---|---|
committer | Rudy Bousset <rbousset@z2r4p3.le-101.fr> | 2020-03-09 23:08:39 +0100 |
commit | a4eae07949127cbdfa9030ad086c1d0edfa8e1f5 (patch) | |
tree | 419651274887318990adb6e434d5f5bcfb835340 /src/ft_init_map.c | |
parent | gang_2 (diff) | |
parent | Map update (diff) | |
download | 42-cub3d-a4eae07949127cbdfa9030ad086c1d0edfa8e1f5.tar.gz 42-cub3d-a4eae07949127cbdfa9030ad086c1d0edfa8e1f5.tar.bz2 42-cub3d-a4eae07949127cbdfa9030ad086c1d0edfa8e1f5.tar.xz 42-cub3d-a4eae07949127cbdfa9030ad086c1d0edfa8e1f5.tar.zst 42-cub3d-a4eae07949127cbdfa9030ad086c1d0edfa8e1f5.zip |
Merge branch 'skybox'
Diffstat (limited to '')
-rw-r--r-- | src/ft_init_map.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/ft_init_map.c b/src/ft_init_map.c index 68a3b6d..27b4a39 100644 --- a/src/ft_init_map.c +++ b/src/ft_init_map.c @@ -28,6 +28,7 @@ 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->music_path = (char*)ft_calloc(1, sizeof(char))) || !(mlist->music_cmd = (char*)ft_calloc(1, sizeof(char))) || !(mlist->mapl = (char*)ft_calloc(1, sizeof(char))) || @@ -58,6 +59,7 @@ int8_t mlist->isctex = 0; mlist->isnlvl = 0; mlist->ismusic = 0; + mlist->isskybox = 0; mlist->darklvl = 0; mlist->scale = 0; mlist->nlx = 0; |