diff options
author | JozanLeClerc <bousset.rudy@gmail.com> | 2020-03-24 14:25:19 +0100 |
---|---|---|
committer | JozanLeClerc <bousset.rudy@gmail.com> | 2020-03-24 14:25:19 +0100 |
commit | 4f154eaf3a8f531999db140c2040f10016042b9d (patch) | |
tree | 7933ef9c6cdf5363ea6b08ff16e9a07ee5253490 /inc | |
parent | Doesn't look too bad (diff) | |
download | 42-cub3d-4f154eaf3a8f531999db140c2040f10016042b9d.tar.gz 42-cub3d-4f154eaf3a8f531999db140c2040f10016042b9d.tar.bz2 42-cub3d-4f154eaf3a8f531999db140c2040f10016042b9d.tar.xz 42-cub3d-4f154eaf3a8f531999db140c2040f10016042b9d.tar.zst 42-cub3d-4f154eaf3a8f531999db140c2040f10016042b9d.zip |
Ram issues
Diffstat (limited to 'inc')
-rw-r--r-- | inc/cub3d_structs.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/inc/cub3d_structs.h b/inc/cub3d_structs.h index d9deb8a..58caa73 100644 --- a/inc/cub3d_structs.h +++ b/inc/cub3d_structs.h @@ -169,8 +169,8 @@ typedef struct s_ray float x_floor; float y_floor; int32_t *tex_x_tab; - float *x_floor_tab; - float *y_floor_tab; + int32_t ***fc_tex_x_tab; + int32_t ***fc_tex_y_tab; float *row_dist_tab; int16_t *wall_t_tab; uint8_t *w_side_tab; |