Fix a bug that allows passing a height bigger than height-3

This commit is contained in:
Timo Schmidt 2023-03-19 03:45:44 +01:00
parent be494be0e5
commit e458d0a5df
1 changed files with 2 additions and 2 deletions

4
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:30:40 by tischmid ### ########.fr */
/* Updated: 2023/03/19 03:45:07 by tischmid ### ########.fr */
/* */
/* ************************************************************************** */
@ -33,7 +33,7 @@ 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)
else if (height > max_height - 3)
return (wrong_dimension("height", max_height - 3, height));
rush(width, height);
return (0);