diff options
Diffstat (limited to '')
-rw-r--r-- | src/ft_exit.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/ft_exit.c b/src/ft_exit.c index e2a8676..4c89bc6 100644 --- a/src/ft_exit.c +++ b/src/ft_exit.c @@ -44,6 +44,11 @@ static void i++; } ft_memdel((void*)&clist->sprites); + if (!clist->wlist.inited) + { + ft_memdel((void*)&clist->wlist.winptr); + ft_memdel((void*)&clist->wlist.wlx); + } ft_memdel((void*)&clist); } @@ -77,8 +82,6 @@ static void while (++i < 2) ft_memdel((void*)&clist->weaps[i]); ft_memdel((void*)&clist->weaps); - if (!clist->wlist.inited) - ft_memdel((void*)&clist->wlist.winptr); } static void |