diff options
Diffstat (limited to '')
-rw-r--r-- | src/main.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -41,8 +41,8 @@ int if (ft_init_winlx(clist) < 0) return (ft_exit(3, clist)); ft_drawmap(clist); - mlx_hook(clist->wlist->winptr, 02, 1L << 1, ft_key_event, clist); - mlx_hook(clist->wlist->winptr, 17, 1L << 3, ft_click_close, clist); + mlx_hook(clist->wlist->winptr, 2, 1L << 1, ft_key_event, clist); + mlx_hook(clist->wlist->winptr, 17, 0L, ft_click_close, clist); mlx_loop(clist->wlist->wlx); return (0); } |