From c970ad0f8366cc7a78aede2c1249bff82571c983 Mon Sep 17 00:00:00 2001 From: jsteube Date: Fri, 3 Jun 2016 13:03:38 +0200 Subject: [PATCH] Fix dos-windows buffer size to maximum, users won't complain if they can scroll back --- src/hashcat.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/hashcat.c b/src/hashcat.c index 10c70f0..4cc7d8e 100644 --- a/src/hashcat.c +++ b/src/hashcat.c @@ -5435,8 +5435,8 @@ void SetConsoleWindowSize (const int x) COORD co; - co.X = sr->Right + 1; - co.Y = sr->Bottom + 1; + co.X = sr->Right + 1; + co.Y = 9999; if (!SetConsoleScreenBufferSize (h, co)) return; -- 2.43.0