From 0c2bb0f610c0af0680b46fc4566a207d59781e4d Mon Sep 17 00:00:00 2001 From: Rudy Bousset Date: Mon, 27 Jan 2020 19:20:28 +0100 Subject: Switched lists entierly --- src/main.c | 24 ++++++++++++++---------- 1 file changed, 14 insertions(+), 10 deletions(-) (limited to 'src/main.c') diff --git a/src/main.c b/src/main.c index d80866b..bca23ce 100644 --- a/src/main.c +++ b/src/main.c @@ -5,20 +5,24 @@ int main(void) { - t_win *wlist; + t_cub *clist; - if (!(wlist = ft_init_win())) + if (!(clist = ft_init_cub())) + { + ft_memdel(clist); return (1); - if (!(wlist->clist = ft_init_cub())) + } + if (!(clist->wlist = ft_init_win())) { - ft_memdel(wlist); + ft_memdel(clist->wlist); + ft_memdel(clist); return (1); } - ft_parse_map("map/map_one.cub", wlist); - if (ft_init_winlx(wlist) < 0) - return (ft_exit(3, wlist)); - mlx_key_hook(wlist->winptr, ft_key_event, wlist); - ft_drawsquare(80, 80, wlist->clist->f_color, wlist); - mlx_loop(wlist->wlx); + ft_parse_map("map/map_one.cub", clist); + if (ft_init_winlx(clist) < 0) + return (ft_exit(3, clist)); + mlx_key_hook(clist->wlist->winptr, ft_key_event, clist); + ft_drawsquare(80, 80, clist->f_color, clist); + mlx_loop(clist->wlist->wlx); return (0); } -- cgit v1.2.3