diff options
Diffstat (limited to 'src/ft_exit.c')
-rw-r--r-- | src/ft_exit.c | 29 |
1 files changed, 16 insertions, 13 deletions
diff --git a/src/ft_exit.c b/src/ft_exit.c index 4c89bc6..8bf79ce 100644 --- a/src/ft_exit.c +++ b/src/ft_exit.c @@ -29,21 +29,24 @@ static void ft_memdel((void*)&clist->sprites[i]); i++; } - i = 0; - while (i < 4) - { - if (clist->tweap[i].img) - mlx_destroy_image(clist->wlist.wlx, clist->tweap[i].img); - i++; - } - i = 0; - while (i < 2) + ft_memdel((void*)&clist->sprites); + if (clist->wlist.inited) { - if (clist->tlist[i + 18].img) - mlx_destroy_image(clist->wlist.wlx, clist->tlist[i + 18].img); - i++; + i = 0; + while (i < 4) + { + if (clist->tweap[i].img) + mlx_destroy_image(clist->wlist.wlx, clist->tweap[i].img); + i++; + } + i = 0; + while (i < 2) + { + if (clist->tlist[i + 18].img) + mlx_destroy_image(clist->wlist.wlx, clist->tlist[i + 18].img); + i++; + } } - ft_memdel((void*)&clist->sprites); if (!clist->wlist.inited) { ft_memdel((void*)&clist->wlist.winptr); |