diff options
author | Rudy Bousset <bousset.rudy@gmail.com> | 2020-05-14 15:22:43 +0200 |
---|---|---|
committer | Rudy Bousset <bousset.rudy@gmail.com> | 2020-05-14 15:22:43 +0200 |
commit | 7fad37259c22f6364d58ad856c203637a1ed92ab (patch) | |
tree | 390400232692934a9c6465985765030b2239b690 /src/ft_click_close.c | |
parent | Can't exit cleanly (diff) | |
download | 42-cub3d-7fad37259c22f6364d58ad856c203637a1ed92ab.tar.gz 42-cub3d-7fad37259c22f6364d58ad856c203637a1ed92ab.tar.bz2 42-cub3d-7fad37259c22f6364d58ad856c203637a1ed92ab.tar.xz 42-cub3d-7fad37259c22f6364d58ad856c203637a1ed92ab.tar.zst 42-cub3d-7fad37259c22f6364d58ad856c203637a1ed92ab.zip |
Ok then
Diffstat (limited to 'src/ft_click_close.c')
-rw-r--r-- | src/ft_click_close.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/ft_click_close.c b/src/ft_click_close.c index 113c241..814392a 100644 --- a/src/ft_click_close.c +++ b/src/ft_click_close.c @@ -19,7 +19,6 @@ int ft_click_close(int keycode, t_cub *clist) { (void)keycode; - (void)clist; - exit(0); - return (0); + clist->clickclose = 1; + return (ft_exit(0, clist)); } |