From 3dd666969d58d7608d25d240a95be84a8bf42394 Mon Sep 17 00:00:00 2001
From: Rudy Bousset <rbousset@z3r8p1.le-101.fr>
Date: Thu, 13 Feb 2020 17:28:01 +0100
Subject: Divided minimap scale by 4, Makefile update

---
 inc/cub3d_structs.h | 27 ++++++++++++++++-----------
 1 file changed, 16 insertions(+), 11 deletions(-)

(limited to 'inc')

diff --git a/inc/cub3d_structs.h b/inc/cub3d_structs.h
index 1a45860..cc5d805 100644
--- a/inc/cub3d_structs.h
+++ b/inc/cub3d_structs.h
@@ -43,19 +43,24 @@ typedef struct		s_player
 	float			view_side;
 }					t_player;
 
+/* typedef struct		s_ray */
+/* { */
+/* 	double			x_ray_position; */
+/* 	double			y_ray_position; */
+/* 	double			x_ray_direction; */
+/* 	double			y_ray_direction; */
+/* 	double			x_side_distance; */
+/* 	double			y_side_distance; */
+/* 	double			x_delta_distance; */
+/* 	double			y_delta_distance; */
+/* 	int				hitX; */
+/* 	int				hitY; */
+/* 	int				hits[150]; */
+/* }					t_ray; */
+
 typedef struct		s_ray
 {
-	double			x_ray_position;
-	double			y_ray_position;
-	double			x_ray_direction;
-	double			y_ray_direction;
-	double			x_side_distance;
-	double			y_side_distance;
-	double			x_delta_distance;
-	double			y_delta_distance;
-	int				hitX;
-	int				hitY;
-	int				hits[150];
+	uint16_t		line_h;
 }					t_ray;
 
 typedef struct		s_cub
-- 
cgit v1.2.3