aboutsummaryrefslogtreecommitdiffstats
path: root/inc
diff options
context:
space:
mode:
Diffstat (limited to 'inc')
-rw-r--r--inc/cub3d_defines.h2
-rw-r--r--inc/cub3d_structs.h5
2 files changed, 4 insertions, 3 deletions
diff --git a/inc/cub3d_defines.h b/inc/cub3d_defines.h
index edc3dec..b348a1c 100644
--- a/inc/cub3d_defines.h
+++ b/inc/cub3d_defines.h
@@ -115,7 +115,7 @@ enum
*/
# define FT_CHRST_VALID_PARSE "RNSEWFCLM"
-# define FT_CHRST_MAP_ENTRY "012NSEWL "
+# define FT_CHRST_MAP_ENTRY "01234NSEWL "
# define FT_CHRST_SPAWN "NSEW"
# define FT_CHRST_MAP_NON_WALL "02NESWL"
# define FT_CHRST_COLLISION "12 "
diff --git a/inc/cub3d_structs.h b/inc/cub3d_structs.h
index 20b64b5..1aaa1d5 100644
--- a/inc/cub3d_structs.h
+++ b/inc/cub3d_structs.h
@@ -87,6 +87,7 @@ typedef struct s_rgb
typedef struct s_sprite
{
int32_t spritescreenx;
+ int32_t current_sprite;
int32_t x;
int32_t y;
int32_t tex_x;
@@ -180,7 +181,7 @@ typedef struct s_map
size_t mapl_len;
int32_t sprite_nbr;
uint8_t sprite_var;
- int32_t sprite_order[12];
+ int32_t sprite_order[4096];
size_t line_chk;
size_t map_start;
uint8_t isspawn;
@@ -219,7 +220,7 @@ typedef struct s_cub
struct s_img img;
struct s_rgb f_rgb;
struct s_rgb c_rgb;
- struct s_img tlist[8];
+ struct s_img tlist[12];
struct s_sprite sprites[12][12];
} t_cub;