1
0
mirror of https://github.com/hashcat/hashcat.git synced 2025-05-25 10:18:47 +00:00

Fix dos-windows buffer size to maximum, users won't complain if they can scroll back

This commit is contained in:
jsteube 2016-06-03 13:03:38 +02:00
parent 0ffa9f4b82
commit c970ad0f83

View File

@ -5436,7 +5436,7 @@ void SetConsoleWindowSize (const int x)
COORD co; COORD co;
co.X = sr->Right + 1; co.X = sr->Right + 1;
co.Y = sr->Bottom + 1; co.Y = 9999;
if (!SetConsoleScreenBufferSize (h, co)) return; if (!SetConsoleScreenBufferSize (h, co)) return;