From c3f23a99bf4858839e502017c8e05386aa48669b Mon Sep 17 00:00:00 2001 From: Timo Schmidt Date: Sun, 19 Mar 2023 03:46:59 +0100 Subject: [PATCH] Change maximum allowed height to height-2 --- main.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/main.c b/main.c index 8f4bead..3a3cfef 100644 --- a/main.c +++ b/main.c @@ -6,7 +6,7 @@ /* By: jtorrez- +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* 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); }