aboutsummaryrefslogtreecommitdiffstats
path: root/src/ft_exit.c
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/ft_exit.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/ft_exit.c b/src/ft_exit.c
index a3ec72d..c445e37 100644
--- a/src/ft_exit.c
+++ b/src/ft_exit.c
@@ -1,6 +1,7 @@
#include <libft.h>
#include <cub3d.h>
#include <mlx.h>
+#include <stddef.h>
#include <stdlib.h>
#include <inttypes.h>
@@ -13,8 +14,8 @@ ft_free_lists(t_cub *clist)
ft_memdel(clist->we_tex_path);
ft_memdel(clist->sprite_path);
ft_free_words(clist->map);
- if (!clist->wlist->inited)
- ft_memdel(clist->wlist->winptr);
+ /* if (!clist->wlist->inited) */
+ ft_memdel(clist->wlist->winptr);
ft_memdel(clist->wlist->wlx);
ft_memdel(clist->wlist);
ft_memdel(clist);
@@ -24,7 +25,10 @@ int
ft_exit(uint8_t exit_code, t_cub *clist)
{
if (clist->wlist->inited)
+ {
mlx_destroy_window(clist->wlist->wlx, clist->wlist->winptr);
+ clist->wlist->winptr = NULL;
+ }
ft_printf("Exiting program\n");
if (exit_code < 0 || exit_code > 0)
ft_printf("Exit code: %hhu\n", exit_code);