fix clear bug on windows (thanks jared)

This commit is contained in:
Adam D. Ruppe 2015-09-21 15:50:40 -04:00
parent cc15188833
commit 2a0d6aeb15
1 changed files with 2 additions and 0 deletions

View File

@ -1106,11 +1106,13 @@ http://msdn.microsoft.com/en-us/library/windows/desktop/ms683193%28v=vs.85%29.as
doTermcap("cl");
} else version(Windows) {
// http://support.microsoft.com/kb/99261
flush();
DWORD c;
CONSOLE_SCREEN_BUFFER_INFO csbi;
DWORD conSize;
GetConsoleScreenBufferInfo(hConsole, &csbi);
conSize = csbi.dwSize.X * csbi.dwSize.Y;
COORD coordScreen;
FillConsoleOutputCharacterA(hConsole, ' ', conSize, coordScreen, &c);
FillConsoleOutputAttribute(hConsole, csbi.wAttributes, conSize, coordScreen, &c);