diff options
Diffstat (limited to 'inc')
-rw-r--r-- | inc/cub3d.h | 2 | ||||
-rw-r--r-- | inc/cub3d_structs.h | 2 |
2 files changed, 1 insertions, 3 deletions
diff --git a/inc/cub3d.h b/inc/cub3d.h index 7014e51..77ade74 100644 --- a/inc/cub3d.h +++ b/inc/cub3d.h @@ -120,8 +120,8 @@ uint8_t ft_use_args(int argc, const char *argv[], */ void ft_castray(t_cub *cl); -void ft_floor_cast(t_cub *cl); void ft_detect(t_cub *cl); +void ft_floor_cast(uint16_t y, t_cub *cl); /* ** ====== OTHER ====== diff --git a/inc/cub3d_structs.h b/inc/cub3d_structs.h index 7072628..cf8b6fa 100644 --- a/inc/cub3d_structs.h +++ b/inc/cub3d_structs.h @@ -130,8 +130,6 @@ typedef struct s_ray float y_side_dist; float x_delta_dist; float y_delta_dist; - float floor_x_wall; - float floor_y_wall; int16_t wall_t; int16_t wall_b; uint8_t side; |