diff options
Diffstat (limited to '')
-rw-r--r-- | src/ft_hooks_and_loops.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ft_hooks_and_loops.c b/src/ft_hooks_and_loops.c index 068b3a7..fdddc10 100644 --- a/src/ft_hooks_and_loops.c +++ b/src/ft_hooks_and_loops.c @@ -18,7 +18,7 @@ void ft_hooks_and_loops(t_win *wl, t_cub *cl) { - mlx_hook(wl->winptr, 2, 1L << 1, ft_key_event, cl); + mlx_hook(wl->winptr, 2, 1L << 0, ft_key_event, cl); mlx_hook(wl->winptr, 17, 0L, ft_click_close, cl); mlx_loop(wl->wlx); } |