Change maximum allowed height to height-2

This commit is contained in:
Timo Schmidt 2023-03-19 03:46:59 +01:00
parent e458d0a5df
commit c3f23a99bf
1 changed files with 3 additions and 3 deletions

6
main.c
View File

@ -6,7 +6,7 @@
/* By: jtorrez- <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2023/03/18 20:15:26 by jtorrez- #+# #+# */
/* Updated: 2023/03/19 03:45:07 by tischmid ### ########.fr */
/* Updated: 2023/03/19 03:46:33 by tischmid ### ########.fr */
/* */
/* ************************************************************************** */
@ -33,8 +33,8 @@ int main(int argc, char *argv[])
height = ft_atoi(argv[2]);
if (width > max_width)
return (wrong_dimension("width", max_width, width));
else if (height > max_height - 3)
return (wrong_dimension("height", max_height - 3, height));
else if (height > max_height - 2)
return (wrong_dimension("height", max_height - 2, height));
rush(width, height);
return (0);
}