From 8866ef5699150d0549096efa94fc311ff7a48dc7 Mon Sep 17 00:00:00 2001 From: JozanLeClerc Date: Tue, 3 Mar 2020 14:47:33 +0100 Subject: Changing stuff --- src/ft_init_winlx.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src/ft_init_winlx.c') diff --git a/src/ft_init_winlx.c b/src/ft_init_winlx.c index 87398e4..a65e419 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); } -- cgit v1.2.3