aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRudy Bousset <rbousset@z2r5p2.le-101.fr>2020-02-19 19:25:35 +0100
committerRudy Bousset <rbousset@z2r5p2.le-101.fr>2020-02-19 19:25:35 +0100
commit8e274f7d63ffa5d88cc9e3e16655a05d857f78c6 (patch)
treed4c27b1a4b87f2c24bbc531a519aee8efb3d8c46
parenttweak (diff)
download42-cub3d-8e274f7d63ffa5d88cc9e3e16655a05d857f78c6.tar.gz
42-cub3d-8e274f7d63ffa5d88cc9e3e16655a05d857f78c6.tar.bz2
42-cub3d-8e274f7d63ffa5d88cc9e3e16655a05d857f78c6.tar.xz
42-cub3d-8e274f7d63ffa5d88cc9e3e16655a05d857f78c6.tar.zst
42-cub3d-8e274f7d63ffa5d88cc9e3e16655a05d857f78c6.zip
Removed stdios
-rw-r--r--src/ft_draw_textures.c1
-rw-r--r--src/ft_draw_verline.c1
-rw-r--r--src/ft_key_loop.c1
3 files changed, 0 insertions, 3 deletions
diff --git a/src/ft_draw_textures.c b/src/ft_draw_textures.c
index c718fd2..598fd91 100644
--- a/src/ft_draw_textures.c
+++ b/src/ft_draw_textures.c
@@ -13,7 +13,6 @@
#include <libft.h>
#include <cub3d.h>
#include <stdint.h>
-#include <stdio.h>
/*
** 1 : no
diff --git a/src/ft_draw_verline.c b/src/ft_draw_verline.c
index 6cbdc00..d526b6a 100644
--- a/src/ft_draw_verline.c
+++ b/src/ft_draw_verline.c
@@ -11,7 +11,6 @@
/* ************************************************************************** */
#include <cub3d.h>
-#include <stdio.h>
static void
ft_draw_floor(t_cub *cl, int32_t y, int32_t x)
diff --git a/src/ft_key_loop.c b/src/ft_key_loop.c
index 0556384..b902e33 100644
--- a/src/ft_key_loop.c
+++ b/src/ft_key_loop.c
@@ -13,7 +13,6 @@
#include <libft.h>
#include <cub3d.h>
#include <stdint.h>
-#include <stdio.h>
static void
ft_collision(float old_y, float old_x, t_player *pl, t_map *ml)