diff options
author | Rudy Bousset <rbousset@z2r4p3.le-101.fr> | 2020-02-17 16:24:04 +0100 |
---|---|---|
committer | Rudy Bousset <rbousset@z2r4p3.le-101.fr> | 2020-02-17 16:24:04 +0100 |
commit | 9af56266c16eaffe9375ba3edb3465c33f015b9f (patch) | |
tree | efc8c7adf952ad533f362bf147667cbc5a8a30f7 /inc | |
parent | Better parse (diff) | |
download | 42-cub3d-9af56266c16eaffe9375ba3edb3465c33f015b9f.tar.gz 42-cub3d-9af56266c16eaffe9375ba3edb3465c33f015b9f.tar.bz2 42-cub3d-9af56266c16eaffe9375ba3edb3465c33f015b9f.tar.xz 42-cub3d-9af56266c16eaffe9375ba3edb3465c33f015b9f.tar.zst 42-cub3d-9af56266c16eaffe9375ba3edb3465c33f015b9f.zip |
ready to merge
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 13225af..2f032e0 100644 --- a/inc/cub3d_structs.h +++ b/inc/cub3d_structs.h @@ -23,8 +23,8 @@ typedef struct s_win uint8_t inited; uint16_t x_max_size; uint16_t y_max_size; - uint16_t x_size; - uint16_t y_size; + uint32_t x_size; + uint32_t y_size; } t_win; typedef struct s_img |