diff options
author | Rudy Bousset <rbousset@z2r4p3.le-101.fr> | 2020-02-05 14:12:03 +0100 |
---|---|---|
committer | Rudy Bousset <rbousset@z2r4p3.le-101.fr> | 2020-02-05 14:12:03 +0100 |
commit | e6bbc5e1a7d1b88a5ed241283ec19fbaa672dc33 (patch) | |
tree | 7b5e2219785805cefc80bd209c892df42679c303 /inc | |
parent | Better code (diff) | |
download | 42-cub3d-e6bbc5e1a7d1b88a5ed241283ec19fbaa672dc33.tar.gz 42-cub3d-e6bbc5e1a7d1b88a5ed241283ec19fbaa672dc33.tar.bz2 42-cub3d-e6bbc5e1a7d1b88a5ed241283ec19fbaa672dc33.tar.xz 42-cub3d-e6bbc5e1a7d1b88a5ed241283ec19fbaa672dc33.tar.zst 42-cub3d-e6bbc5e1a7d1b88a5ed241283ec19fbaa672dc33.zip |
Bug fix
Diffstat (limited to '')
-rw-r--r-- | inc/cub3d.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/inc/cub3d.h b/inc/cub3d.h index 1abcd1e..f017973 100644 --- a/inc/cub3d.h +++ b/inc/cub3d.h @@ -90,10 +90,11 @@ typedef struct s_cub char *mapl; char **map; size_t map_w; + size_t map_h; size_t line_chk; size_t map_start; uint8_t isspawn; - uint16_t scale; + uint8_t scale; struct s_win *wlist; struct s_player *plist; struct s_img img; |