diff options
author | JozanLeClerc <bousset.rudy@gmail.com> | 2020-03-30 16:50:13 +0200 |
---|---|---|
committer | JozanLeClerc <bousset.rudy@gmail.com> | 2020-03-30 16:50:13 +0200 |
commit | c8e12617e07762d65bc7c74ecc55e279c3267b84 (patch) | |
tree | 2114b7906acdef1d5d5f2c580c62d612bf4819ca /src/ft_big_t.c | |
parent | Fixed conditionnal jump btw (diff) | |
download | 42-cub3d-c8e12617e07762d65bc7c74ecc55e279c3267b84.tar.gz 42-cub3d-c8e12617e07762d65bc7c74ecc55e279c3267b84.tar.bz2 42-cub3d-c8e12617e07762d65bc7c74ecc55e279c3267b84.tar.xz 42-cub3d-c8e12617e07762d65bc7c74ecc55e279c3267b84.tar.zst 42-cub3d-c8e12617e07762d65bc7c74ecc55e279c3267b84.zip |
Commit
Diffstat (limited to 'src/ft_big_t.c')
-rw-r--r-- | src/ft_big_t.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/ft_big_t.c b/src/ft_big_t.c index e01bed7..b4d7e52 100644 --- a/src/ft_big_t.c +++ b/src/ft_big_t.c @@ -27,8 +27,10 @@ static int8_t return (15); else if (st_o == 9) return (17); - else if (st_o >= 10) + else if (st_o >= 10 && st_o <= 12) return (st_o + 8); + else if (st_o == 13) + return (23); return (0); } |