diff options
author | JozanLeClerc <bousset.rudy@gmail.com> | 2020-03-19 14:05:44 +0100 |
---|---|---|
committer | JozanLeClerc <bousset.rudy@gmail.com> | 2020-03-19 14:05:44 +0100 |
commit | 21e2dbe87e9d95ceac06e34ab5d80bbe6d6d7635 (patch) | |
tree | ee15ce26a61bacb41f685bdbe160f1879d996ee5 /src/ft_exit.c | |
parent | Correct init and frees (diff) | |
download | 42-cub3d-21e2dbe87e9d95ceac06e34ab5d80bbe6d6d7635.tar.gz 42-cub3d-21e2dbe87e9d95ceac06e34ab5d80bbe6d6d7635.tar.bz2 42-cub3d-21e2dbe87e9d95ceac06e34ab5d80bbe6d6d7635.tar.xz 42-cub3d-21e2dbe87e9d95ceac06e34ab5d80bbe6d6d7635.tar.zst 42-cub3d-21e2dbe87e9d95ceac06e34ab5d80bbe6d6d7635.zip |
Okok
Diffstat (limited to 'src/ft_exit.c')
-rw-r--r-- | src/ft_exit.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/ft_exit.c b/src/ft_exit.c index f0a25e0..1f47f02 100644 --- a/src/ft_exit.c +++ b/src/ft_exit.c @@ -92,6 +92,14 @@ static void mlx_destroy_image(clist->wlist.wlx, clist->tlist[18].img); if (clist->mlist.isweapon[1] && clist->tlist[19].img) mlx_destroy_image(clist->wlist.wlx, clist->tlist[19].img); + if (cl->tweap[0].img) + mlx_destroy_image(cl->wlist.wlx, cl->tweap[0].img); + if (cl->tweap[1].img) + mlx_destroy_image(cl->wlist.wlx, cl->tweap[1].img); + if (cl->tweap[2].img) + mlx_destroy_image(cl->wlist.wlx, cl->tweap[2].img); + if (cl->tweap[3].img) + mlx_destroy_image(cl->wlist.wlx, cl->tweap[3].img); ft_del_extra_sprites(clist); } |