diff options
Diffstat (limited to '')
-rw-r--r-- | inc/cub3d_structs.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/inc/cub3d_structs.h b/inc/cub3d_structs.h index 49ede14..d9deb8a 100644 --- a/inc/cub3d_structs.h +++ b/inc/cub3d_structs.h @@ -168,9 +168,10 @@ typedef struct s_ray float row_dist; float x_floor; float y_floor; - int32_t x_cell; - int32_t y_cell; int32_t *tex_x_tab; + float *x_floor_tab; + float *y_floor_tab; + float *row_dist_tab; int16_t *wall_t_tab; uint8_t *w_side_tab; uint16_t *line_h_tab; |