diff options
author | Rudy Bousset <rbousset@z2r4p3.le-101.fr> | 2020-02-09 15:12:52 +0100 |
---|---|---|
committer | Rudy Bousset <rbousset@z2r4p3.le-101.fr> | 2020-02-09 15:12:52 +0100 |
commit | a1e2fbb1502564a7d49a47ca1949aeec83ea67b2 (patch) | |
tree | 36a4068779ca81b81d14281a36d338034c36917d /src/main.c | |
parent | Smooth (diff) | |
download | 42-cub3d-a1e2fbb1502564a7d49a47ca1949aeec83ea67b2.tar.gz 42-cub3d-a1e2fbb1502564a7d49a47ca1949aeec83ea67b2.tar.bz2 42-cub3d-a1e2fbb1502564a7d49a47ca1949aeec83ea67b2.tar.xz 42-cub3d-a1e2fbb1502564a7d49a47ca1949aeec83ea67b2.tar.zst 42-cub3d-a1e2fbb1502564a7d49a47ca1949aeec83ea67b2.zip |
New function, trying to close properly
Diffstat (limited to 'src/main.c')
-rw-r--r-- | src/main.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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); |