diff options
author | Rudy Bousset <rbousset@z2r4p3.le-101.fr> | 2020-02-09 15:34:11 +0100 |
---|---|---|
committer | Rudy Bousset <rbousset@z2r4p3.le-101.fr> | 2020-02-09 15:34:11 +0100 |
commit | a7130e98c095c1871b4954167025c8e6d63a390d (patch) | |
tree | dbcc98d734f74051a6f61975b8cf651dce7990d5 | |
parent | Exits just fine but must be leaking a damn lot (diff) | |
download | 42-cub3d-a7130e98c095c1871b4954167025c8e6d63a390d.tar.gz 42-cub3d-a7130e98c095c1871b4954167025c8e6d63a390d.tar.bz2 42-cub3d-a7130e98c095c1871b4954167025c8e6d63a390d.tar.xz 42-cub3d-a7130e98c095c1871b4954167025c8e6d63a390d.tar.zst 42-cub3d-a7130e98c095c1871b4954167025c8e6d63a390d.zip |
fuck you
-rw-r--r-- | src/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -40,9 +40,9 @@ int ft_parse_map(argv[1], clist); 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); - ft_drawmap(clist); mlx_loop(clist->wlist->wlx); return (0); } |