From a1e2fbb1502564a7d49a47ca1949aeec83ea67b2 Mon Sep 17 00:00:00 2001 From: Rudy Bousset Date: Sun, 9 Feb 2020 15:12:52 +0100 Subject: New function, trying to close properly --- src/main.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/main.c') diff --git a/src/main.c b/src/main.c index 5e05c02..b1437cc 100644 --- a/src/main.c +++ b/src/main.c @@ -40,8 +40,8 @@ int ft_parse_map(argv[1], clist); if (ft_init_winlx(clist) < 0) return (ft_exit(3, clist)); - mlx_hook(clist->wlist->winptr, 2, 1L<<1, ft_key_event, clist); - /* mlx_key_hook(clist->wlist->winptr, ft_key_event, clist); */ + mlx_hook(clist->wlist->winptr, 2, 1L << 1, ft_key_event, clist); + mlx_hook(clist->wlist->winptr, 17, 1L << 3, ft_click_close, clist); ft_drawmap(clist); mlx_loop(clist->wlist->wlx); return (0); -- cgit v1.2.3