revert r26384 - this is an old hack to make console output work. We don't need this any longer since freetype / text output is fixed.

svn path=/trunk/; revision=33972
This commit is contained in:
Timo Kreuzer 2008-06-14 23:20:22 +00:00
parent 35656fd354
commit 86909f313f

View file

@ -871,7 +871,7 @@ GuiConsolePaint(PCSRSS_CONSOLE Console,
PWCHAR To;
BYTE LastAttribute, Attribute;
ULONG CursorX, CursorY, CursorHeight;
HBRUSH CursorBrush, OldBrush, BackgroundBrush;
HBRUSH CursorBrush, OldBrush;
HFONT OldFont;
Buff = Console->ActiveBuffer;
@ -890,10 +890,6 @@ GuiConsolePaint(PCSRSS_CONSOLE Console,
OldFont = SelectObject(hDC,
GuiData->Font);
BackgroundBrush = CreateSolidBrush(GuiData->ScreenBackground);
FillRect(hDC, rc, BackgroundBrush);
DeleteObject(BackgroundBrush);
for (Line = TopLine; Line <= BottomLine; Line++)
{
if (Line + Buff->ShowY < Buff->MaxY)