diff options
author | JozanLeClerc <bousset.rudy@gmail.com> | 2020-02-29 22:38:46 +0100 |
---|---|---|
committer | JozanLeClerc <bousset.rudy@gmail.com> | 2020-02-29 22:38:46 +0100 |
commit | 6fed037a506e4f91f3427914886e5d432206e6fe (patch) | |
tree | 042a95c7900f9d7f833856e9cb717f173fcf3162 /src/ft_init_winlx.c | |
parent | in progress (diff) | |
download | 42-cub3d-6fed037a506e4f91f3427914886e5d432206e6fe.tar.gz 42-cub3d-6fed037a506e4f91f3427914886e5d432206e6fe.tar.bz2 42-cub3d-6fed037a506e4f91f3427914886e5d432206e6fe.tar.xz 42-cub3d-6fed037a506e4f91f3427914886e5d432206e6fe.tar.zst 42-cub3d-6fed037a506e4f91f3427914886e5d432206e6fe.zip |
leaks leaks leaks
Diffstat (limited to '')
-rw-r--r-- | src/ft_init_winlx.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/ft_init_winlx.c b/src/ft_init_winlx.c index 1e2e351..db1d88d 100644 --- a/src/ft_init_winlx.c +++ b/src/ft_init_winlx.c @@ -21,11 +21,16 @@ int ft_memdel((void**)&clist->wlist->wlx); if (!(clist->wlist->wlx = mlx_init())) return (-1); + return (0); +} + +int + ft_init_winptr(t_cub *clist) +{ ft_memdel((void**)&clist->wlist->winptr); if (!(clist->wlist->winptr = mlx_new_window(clist->wlist->wlx, clist->wlist->x_size, clist->wlist->y_size, "Cub3D"))) return (-1); clist->wlist->inited = 1; - /* ft_music(clist); */ return (0); } |