aboutsummaryrefslogtreecommitdiffstats
path: root/src/ft_check_missing.c
diff options
context:
space:
mode:
authorJozanLeClerc <bousset.rudy@gmail.com>2020-04-14 19:05:00 +0200
committerJozanLeClerc <bousset.rudy@gmail.com>2020-04-14 19:05:00 +0200
commita19aca0a417d220984cd293540aac5631ec6c16e (patch)
treec4604ba561979b821ff03efb60a2555cac4d98e1 /src/ft_check_missing.c
parentMore norme (diff)
download42-cub3d-a19aca0a417d220984cd293540aac5631ec6c16e.tar.gz
42-cub3d-a19aca0a417d220984cd293540aac5631ec6c16e.tar.bz2
42-cub3d-a19aca0a417d220984cd293540aac5631ec6c16e.tar.xz
42-cub3d-a19aca0a417d220984cd293540aac5631ec6c16e.tar.zst
42-cub3d-a19aca0a417d220984cd293540aac5631ec6c16e.zip
Renorm
Diffstat (limited to 'src/ft_check_missing.c')
-rw-r--r--src/ft_check_missing.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ft_check_missing.c b/src/ft_check_missing.c
index a0cb16f..4fec8bb 100644
--- a/src/ft_check_missing.c
+++ b/src/ft_check_missing.c
@@ -25,10 +25,10 @@ static int
if (clist->mlist.istraps && !clist->mlist.traps_path[0])
return (ft_missing_error(FT_ERR_MISS_TRAP, clist));
if (ft_check_not_found(FT_WEAPON_ONE_SPR_PATH) < 0 ||
- ft_check_ext(FT_WEAPON_ONE_SPR_PATH, ".xpm") < 0)
+ ft_check_ext(FT_WEAPON_ONE_SPR_PATH, ".xpm") < 0)
return (ft_missing_error(FT_ERR_MISS_W_ONE_SPR, clist));
if (ft_check_not_found(FT_WEAPON_TWO_SPR_PATH) < 0 ||
- ft_check_ext(FT_WEAPON_TWO_SPR_PATH, ".xpm") < 0)
+ ft_check_ext(FT_WEAPON_TWO_SPR_PATH, ".xpm") < 0)
return (ft_missing_error(FT_ERR_MISS_W_TWO_SPR, clist));
i = 0;
while ((i + 2) <= clist->mlist.topsp)