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

pull/363/head
jsteube 8 years ago
parent 0ffa9f4b82
commit c970ad0f83

@ -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;

Loading…
Cancel
Save