From 1fe601e28b4468636fc948cf9908a826ff22c5f8 Mon Sep 17 00:00:00 2001 From: JozanLeClerc Date: Fri, 24 Apr 2020 19:37:03 +0200 Subject: even better --- src/ft_hooks_and_loops.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/ft_hooks_and_loops.c b/src/ft_hooks_and_loops.c index c1ab352..ccebf1d 100644 --- a/src/ft_hooks_and_loops.c +++ b/src/ft_hooks_and_loops.c @@ -13,14 +13,13 @@ #include #include #include -#include void ft_hooks_and_loops(t_win *wl, t_cub *cl) { mlx_hook(wl->winptr, 2, (1L << 0), ft_key_event, cl); mlx_hook(wl->winptr, 3, (1L << 1), ft_key_release, cl); - mlx_hook(wl->winptr, DestroyNotify, StructureNotifyMask, ft_click_close, cl); + mlx_hook(wl->winptr, 17, (1L << 17), ft_click_close, cl); mlx_loop_hook(wl->wlx, ft_key_loop, cl); mlx_loop(wl->wlx); } -- cgit v1.2.3