aboutsummaryrefslogtreecommitdiffstats
path: root/src/main.c
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/main.c24
1 files changed, 14 insertions, 10 deletions
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);
}