aboutsummaryrefslogtreecommitdiffstats
path: root/src/ft_print_list.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/ft_print_list.c')
-rw-r--r--src/ft_print_list.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/ft_print_list.c b/src/ft_print_list.c
index 547bdb2..f038740 100644
--- a/src/ft_print_list.c
+++ b/src/ft_print_list.c
@@ -4,6 +4,8 @@
void
ft_print_list(t_win *wlist)
{
+ size_t i;
+
ft_printf("x size [%d]\n", wlist->x_size);
ft_printf("y size [%d]\n", wlist->y_size);
ft_printf("North - [%s]\n", wlist->clist->no_tex_path);
@@ -13,4 +15,10 @@ ft_print_list(t_win *wlist)
ft_printf("Sprite [%s]\n", wlist->clist->sprite_path);
ft_printf("F color [%d]\n", wlist->clist->f_color);
ft_printf("C color [%d]\n", wlist->clist->c_color);
+ i = 0;
+ while (wlist->clist->map[i])
+ {
+ ft_printf("Map Line %zu [%s]\n", i + 1, wlist->clist->map[i]);
+ i++;
+ }
}