diff options
author | JozanLeClerc <bousset.rudy@gmail.com> | 2020-03-03 16:57:36 +0100 |
---|---|---|
committer | JozanLeClerc <bousset.rudy@gmail.com> | 2020-03-03 16:57:36 +0100 |
commit | d4f853942aa2031c4bd85539ef9f3470967ffdc5 (patch) | |
tree | d2c5ffb0027860722185bf26b526757360ff1584 /src/ft_init_winlx.c | |
parent | tweaks (diff) | |
parent | Going full stack is bav (diff) | |
download | 42-cub3d-d4f853942aa2031c4bd85539ef9f3470967ffdc5.tar.gz 42-cub3d-d4f853942aa2031c4bd85539ef9f3470967ffdc5.tar.bz2 42-cub3d-d4f853942aa2031c4bd85539ef9f3470967ffdc5.tar.xz 42-cub3d-d4f853942aa2031c4bd85539ef9f3470967ffdc5.tar.zst 42-cub3d-d4f853942aa2031c4bd85539ef9f3470967ffdc5.zip |
Merge branch 'bmp'
Diffstat (limited to '')
-rw-r--r-- | src/ft_init_winlx.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/ft_init_winlx.c b/src/ft_init_winlx.c index 87398e4..dee4009 100644 --- a/src/ft_init_winlx.c +++ b/src/ft_init_winlx.c @@ -18,7 +18,7 @@ int ft_init_winlx(t_cub *clist) { - if (!(clist->wlist->wlx = mlx_init())) + if (!(clist->wlist.wlx = mlx_init())) return (-1); return (0); } @@ -26,10 +26,10 @@ int int ft_init_winptr(t_cub *clist) { - ft_memdel((void**)&clist->wlist->winptr); - if (!(clist->wlist->winptr = mlx_new_window(clist->wlist->wlx, - clist->wlist->x_size, clist->wlist->y_size, "Cub3D"))) + ft_memdel((void**)&clist->wlist.winptr); + if (!(clist->wlist.winptr = mlx_new_window(clist->wlist.wlx, + clist->wlist.x_size, clist->wlist.y_size, "Cub3D"))) return (-1); - clist->wlist->inited = 1; + clist->wlist.inited = 1; return (0); } |