diff options
author | JozanLeClerc <bousset.rudy@gmail.com> | 2020-03-20 15:00:34 +0100 |
---|---|---|
committer | JozanLeClerc <bousset.rudy@gmail.com> | 2020-03-20 15:00:34 +0100 |
commit | dde150a1fc11832acab76ec0c43a18d363e4642d (patch) | |
tree | 0846d3d0e3287248d9150c17f187ea6bcb7137cd /src/ft_parse_map.c | |
parent | Map fix (diff) | |
download | 42-cub3d-dde150a1fc11832acab76ec0c43a18d363e4642d.tar.gz 42-cub3d-dde150a1fc11832acab76ec0c43a18d363e4642d.tar.bz2 42-cub3d-dde150a1fc11832acab76ec0c43a18d363e4642d.tar.xz 42-cub3d-dde150a1fc11832acab76ec0c43a18d363e4642d.tar.zst 42-cub3d-dde150a1fc11832acab76ec0c43a18d363e4642d.zip |
Removed bloat
Diffstat (limited to '')
-rw-r--r-- | src/ft_parse_map.c | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/src/ft_parse_map.c b/src/ft_parse_map.c index 785a816..057b053 100644 --- a/src/ft_parse_map.c +++ b/src/ft_parse_map.c @@ -111,15 +111,4 @@ void ft_set_minimap_scale(clist); clist->currlvl += (clist->isdead == 0) ? (1) : (0); close(fd); - - - /* ====== MAP PRINT ====== */ - fd = 0; - ft_printf("=====================\n"); - while (clist->mlist.map[fd]) - { - ft_printf("[%s]\n", clist->mlist.map[fd]); - fd++; - } - ft_printf("\n\n"); } |