aboutsummaryrefslogtreecommitdiffstats
path: root/src/ft_init_lists.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/ft_init_lists.c')
-rw-r--r--src/ft_init_lists.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/ft_init_lists.c b/src/ft_init_lists.c
index c61dd45..b6f2932 100644
--- a/src/ft_init_lists.c
+++ b/src/ft_init_lists.c
@@ -12,8 +12,9 @@ t_winlist
wlist->x_size = 800;
wlist->y_size = 600;
wlist->wlx = mlx_init();
- wlist->winptr = (void*)malloc(800 * 600);
- wlist->winptr = mlx_new_window(wlist->wlx, 800, 600, "Cub3D");
+ wlist->winptr = (void*)malloc(wlist->x_size * wlist->y_size);
+ wlist->winptr = mlx_new_window(wlist->wlx, wlist->x_size, wlist->y_size, "Cub3D");
+ ft_printf("Created window of size %dx%d\n", wlist->x_size, wlist->y_size);
return (wlist);
}