aboutsummaryrefslogtreecommitdiffstats
path: root/src/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.c')
-rw-r--r--src/main.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/main.c b/src/main.c
index 77da0bc..39b5f7c 100644
--- a/src/main.c
+++ b/src/main.c
@@ -33,8 +33,6 @@ int
if (ft_init_winlx(clist) < 0)
return (ft_exit(3, clist));
ft_drawmap(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);
+ ft_hooks_and_loops(clist->wlist, clist);
return (0);
}