aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--map/map_one.cub2
-rw-r--r--src/ft_exit.c4
2 files changed, 4 insertions, 2 deletions
diff --git a/map/map_one.cub b/map/map_one.cub
index e35fb76..9728683 100644
--- a/map/map_one.cub
+++ b/map/map_one.cub
@@ -1,4 +1,4 @@
-R 1700 1000
+R 1400 900
NO ./path_to_the_north_texture
SO ./path_to_the_south_texture
WE ./path_to_the_west_texture
diff --git a/src/ft_exit.c b/src/ft_exit.c
index 925bbd5..010c0d1 100644
--- a/src/ft_exit.c
+++ b/src/ft_exit.c
@@ -1,5 +1,6 @@
#include <libft.h>
#include <cub3d.h>
+#include <mlx.h>
#include <stdlib.h>
#include <inttypes.h>
@@ -12,7 +13,7 @@ ft_free_lists(t_cub *clist)
ft_memdel(clist->we_tex_path);
ft_memdel(clist->sprite_path);
ft_free_words(clist->map, NULL);
- ft_memdel(clist->wlist->winptr);
+ /* ft_memdel(clist->wlist->winptr); */
ft_memdel(clist->wlist->wlx);
ft_memdel(clist->wlist);
ft_memdel(clist);
@@ -21,6 +22,7 @@ ft_free_lists(t_cub *clist)
int
ft_exit(uint8_t exit_code, t_cub *clist)
{
+ mlx_destroy_window(clist->wlist->wlx, clist->wlist->winptr);
ft_printf("Exiting program\n");
if (exit_code < 0 || exit_code > 0)
ft_printf("Exit code: %hhu\n", exit_code);