Fix dos-windows buffer size to maximum, users won't complain if they can scroll back
authorjsteube <jens.steube@gmail.com>
Fri, 3 Jun 2016 11:03:38 +0000 (13:03 +0200)
committerjsteube <jens.steube@gmail.com>
Fri, 3 Jun 2016 11:03:38 +0000 (13:03 +0200)
src/hashcat.c

index 10c70f0..4cc7d8e 100644 (file)
@@ -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;