diff options
author | Rudy Bousset <rbousset@z2r5p2.le-101.fr> | 2020-01-27 17:50:39 +0100 |
---|---|---|
committer | Rudy Bousset <rbousset@z2r5p2.le-101.fr> | 2020-01-27 17:50:39 +0100 |
commit | f1665c083bc156008082c76dbf1c031eeb9df341 (patch) | |
tree | 02ee5925ba40144c19bd1ea608537a0f3b0ab503 /src/ft_print_list.c | |
parent | Can't believe it (diff) | |
download | 42-cub3d-f1665c083bc156008082c76dbf1c031eeb9df341.tar.gz 42-cub3d-f1665c083bc156008082c76dbf1c031eeb9df341.tar.bz2 42-cub3d-f1665c083bc156008082c76dbf1c031eeb9df341.tar.xz 42-cub3d-f1665c083bc156008082c76dbf1c031eeb9df341.tar.zst 42-cub3d-f1665c083bc156008082c76dbf1c031eeb9df341.zip |
quick commit
Diffstat (limited to 'src/ft_print_list.c')
-rw-r--r-- | src/ft_print_list.c | 8 |
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++; + } } |