aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Makefile2
-rw-r--r--src/ft_key_loop.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index c5c20e2..2c2443d 100644
--- a/Makefile
+++ b/Makefile
@@ -15,7 +15,7 @@ MLX_DIR = minilibx/
#==================================================================================================#
#---------------------------------------------- Files ---------------------------------------------#
#==================================================================================================#
-INCS = cub3d.h
+INCS = cub3d.h
INCS += cub3d_defines.h
INCS += cub3d_structs.h
#--------------------------------------------------------------------------------------------------#
diff --git a/src/ft_key_loop.c b/src/ft_key_loop.c
index 2fe62e7..d92b37e 100644
--- a/src/ft_key_loop.c
+++ b/src/ft_key_loop.c
@@ -40,8 +40,8 @@ int
{
cl->key_ptr[cl->key_input[i]](cl);
ft_collision(old_y, old_x, cl->plist, cl->mlist);
- ft_draw_scene(cl);
i++;
}
+ ft_draw_scene(cl);
return (0);
}