From b30087062bea536f713ac9cbdf304cb24fa0e844 Mon Sep 17 00:00:00 2001
From: Rudy Bousset <rbousset@z2r4p1.le-101.fr>
Date: Sun, 8 Mar 2020 17:11:26 +0100
Subject: Removed sceret door bonus because it is no door

---
 src/ft_detect.c       | 2 +-
 src/ft_draw_verline.c | 2 ++
 2 files changed, 3 insertions(+), 1 deletion(-)

(limited to 'src')

diff --git a/src/ft_detect.c b/src/ft_detect.c
index cbd8c58..42ecb3f 100644
--- a/src/ft_detect.c
+++ b/src/ft_detect.c
@@ -74,7 +74,7 @@ void
 			cl->rlist.sqy += cl->mlist.y_step;
 			cl->rlist.side = 1;
 		}
-		if (ft_ischarset("1LD", cl->mlist.map[cl->rlist.sqx][cl->rlist.sqy]))
+		if (ft_ischarset(FT_CHRST_DETECT, cl->mlist.map[cl->rlist.sqx][cl->rlist.sqy]))
 			cl->rlist.hit = 1;
 	}
 }
diff --git a/src/ft_draw_verline.c b/src/ft_draw_verline.c
index dd7697a..9abb73f 100644
--- a/src/ft_draw_verline.c
+++ b/src/ft_draw_verline.c
@@ -28,6 +28,7 @@ static void
 	cl->img.ptr[x * 4 + cl->wlist.x_size * y + 3] = (int8_t)0;
 }
 
+#include <stdio.h>
 static void
 	ft_draw_floor(t_cub *cl, int32_t y, int32_t x)
 {
@@ -56,6 +57,7 @@ static void
 			? (cl->tlist[6].tex_x) : (-cl->tlist[6].tex_x);
 		cl->tlist[6].tex_y = (cl->tlist[6].tex_y > 0)
 			? (cl->tlist[6].tex_y) : (-cl->tlist[6].tex_y);
+		/* printf("tex_x %d | tex_y %d\n", cl->tlist[6].tex_x, cl->tlist[6].tex_y); */
 		ft_draw_floor_tex(cl, y, x, cl->tlist[6].tex_y);
 		/* *(int*)(cl->img.ptr + */
 		/* 		(x * 4 + (y * cl->img.sizeline))) */
-- 
cgit v1.2.3