aboutsummaryrefslogtreecommitdiffstats
path: root/src/ft_init_map.c
diff options
context:
space:
mode:
authorJozanLeClerc <bousset.rudy@gmail.com>2020-03-03 14:47:33 +0100
committerJozanLeClerc <bousset.rudy@gmail.com>2020-03-03 14:47:33 +0100
commit8866ef5699150d0549096efa94fc311ff7a48dc7 (patch)
tree4a03267f7e7f9b399a9ad0536b50ba6a90407e47 /src/ft_init_map.c
parentMusic is pretty bav (diff)
download42-cub3d-8866ef5699150d0549096efa94fc311ff7a48dc7.tar.gz
42-cub3d-8866ef5699150d0549096efa94fc311ff7a48dc7.tar.bz2
42-cub3d-8866ef5699150d0549096efa94fc311ff7a48dc7.tar.xz
42-cub3d-8866ef5699150d0549096efa94fc311ff7a48dc7.tar.zst
42-cub3d-8866ef5699150d0549096efa94fc311ff7a48dc7.zip
Changing stuff
Diffstat (limited to 'src/ft_init_map.c')
-rw-r--r--src/ft_init_map.c50
1 files changed, 25 insertions, 25 deletions
diff --git a/src/ft_init_map.c b/src/ft_init_map.c
index c611ba2..4e8650b 100644
--- a/src/ft_init_map.c
+++ b/src/ft_init_map.c
@@ -18,18 +18,18 @@
static int8_t
ft_init_map_callocs(t_map *mlist)
{
- if (!(mlist->no_tex_path = (char*)ft_calloc(1, sizeof(char))) ||
- !(mlist->so_tex_path = (char*)ft_calloc(1, sizeof(char))) ||
- !(mlist->ea_tex_path = (char*)ft_calloc(1, sizeof(char))) ||
- !(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->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))) ||
- !(mlist->mapl = (char*)ft_calloc(1, sizeof(char))) ||
- !(mlist->map = (char**)ft_calloc(2, sizeof(char*))) ||
- !(mlist->map[0] = (char*)ft_calloc(1, sizeof(char))))
+ if (!(mlist.no_tex_path = (char*)ft_calloc(1, sizeof(char))) ||
+ !(mlist.so_tex_path = (char*)ft_calloc(1, sizeof(char))) ||
+ !(mlist.ea_tex_path = (char*)ft_calloc(1, sizeof(char))) ||
+ !(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.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))) ||
+ !(mlist.mapl = (char*)ft_calloc(1, sizeof(char))) ||
+ !(mlist.map = (char**)ft_calloc(2, sizeof(char*))) ||
+ !(mlist.map[0] = (char*)ft_calloc(1, sizeof(char))))
return (-1);
return (0);
}
@@ -43,18 +43,18 @@ t_map
return (NULL);
if (ft_init_map_callocs(mlist) < 0)
return (NULL);
- mlist->map[1] = 0;
- mlist->map_w = 0;
- mlist->map_h = 0;
- mlist->x_step = 0;
- mlist->y_step = 0;
- mlist->line_chk = 0;
- mlist->map_start = 0;
- mlist->isspawn = 0;
- mlist->isnlvl = 0;
- mlist->ismusic = 0;
- mlist->scale = 0;
- mlist->nlx = 0;
- mlist->nly = 0;
+ mlist.map[1] = 0;
+ mlist.map_w = 0;
+ mlist.map_h = 0;
+ mlist.x_step = 0;
+ mlist.y_step = 0;
+ mlist.line_chk = 0;
+ mlist.map_start = 0;
+ mlist.isspawn = 0;
+ mlist.isnlvl = 0;
+ mlist.ismusic = 0;
+ mlist.scale = 0;
+ mlist.nlx = 0;
+ mlist.nly = 0;
return (mlist);
}