diff options
Diffstat (limited to 'src/ft_get_tex.c')
-rw-r--r-- | src/ft_get_tex.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/ft_get_tex.c b/src/ft_get_tex.c index 1826825..240f034 100644 --- a/src/ft_get_tex.c +++ b/src/ft_get_tex.c @@ -15,7 +15,7 @@ #include <cub3d.h> #include <stdlib.h> -int +int8_t ft_get_tex_no(char **words, t_cub *clist) { if (!(*words) || !(*(words + 1)) || (*(words + 2))) @@ -26,7 +26,7 @@ int return (0); } -int +int8_t ft_get_tex_so(char **words, t_cub *clist) { if (!(*words) || !(*(words + 1)) || (*(words + 2))) @@ -37,7 +37,7 @@ int return (0); } -int +int8_t ft_get_tex_ea(char **words, t_cub *clist) { if (!(*words) || !(*(words + 1)) || (*(words + 2))) @@ -48,7 +48,7 @@ int return (0); } -int +int8_t ft_get_tex_we(char **words, t_cub *clist) { if (!(*words) || !(*(words + 1)) || (*(words + 2))) |