diff options
author | JozanLeClerc <bousset.rudy@gmail.com> | 2020-03-09 14:48:28 +0100 |
---|---|---|
committer | JozanLeClerc <bousset.rudy@gmail.com> | 2020-03-09 14:48:28 +0100 |
commit | 39c371a659a65ec14fffde12c79f8f140078e215 (patch) | |
tree | 90d226d6a136e37d93dd4c2306b26b0b0976af46 /src/ft_select_get.c | |
parent | the very smartest (diff) | |
download | 42-cub3d-39c371a659a65ec14fffde12c79f8f140078e215.tar.gz 42-cub3d-39c371a659a65ec14fffde12c79f8f140078e215.tar.bz2 42-cub3d-39c371a659a65ec14fffde12c79f8f140078e215.tar.xz 42-cub3d-39c371a659a65ec14fffde12c79f8f140078e215.tar.zst 42-cub3d-39c371a659a65ec14fffde12c79f8f140078e215.zip |
CC back to clang only
Diffstat (limited to '')
-rw-r--r-- | src/ft_select_get.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/ft_select_get.c b/src/ft_select_get.c index 8005eb7..96ed6e7 100644 --- a/src/ft_select_get.c +++ b/src/ft_select_get.c @@ -18,8 +18,8 @@ static int8_t ft_check_exists(const int8_t ret, t_cub *clist) { - if (ret == 12) - return (12); + if (ret == 25) + return (25); if (ret == 0 && clist->currlvl == 0 && (clist->wlist.x_size != 0 || clist->wlist.y_size != 0)) return (-1); @@ -45,8 +45,8 @@ static int8_t static int8_t ft_check_exists_two(const int8_t ret, t_cub *clist) { - if (ret == 12) - return (12); + if (ret == 25) + return (25); if (ret == 8 && (clist->mlist.nlevel_path[0])) return (-1); if (ret == 9 && (clist->mlist.nl_tex_path[0])) @@ -80,7 +80,7 @@ static int8_t while (ft_strncmp(words[0], ref[ret], 3) && ref[ret][0]) ret++; if (ret == 11) - ret = 12; + ret = 25; ret = ft_check_exists(ret, clist); ret = ft_check_exists_two(ret, clist); return (ret); @@ -91,10 +91,10 @@ int8_t { int8_t id; - if ((id = ft_get_id(words, clist)) == 12) + if ((id = ft_get_id(words, clist)) == 25) { ft_free_words(words); - return (12); + return (25); } if (id < 0 || clist->get_ptr[id](words, clist) < 0) { |