From 86909f313f5de44c8c88cc11009b9e0d5f51628e Mon Sep 17 00:00:00 2001 From: Timo Kreuzer Date: Sat, 14 Jun 2008 23:20:22 +0000 Subject: [PATCH] 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 --- reactos/subsystems/win32/csrss/win32csr/guiconsole.c | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/reactos/subsystems/win32/csrss/win32csr/guiconsole.c b/reactos/subsystems/win32/csrss/win32csr/guiconsole.c index 39a3e9f7107..b60eb88b897 100644 --- a/reactos/subsystems/win32/csrss/win32csr/guiconsole.c +++ b/reactos/subsystems/win32/csrss/win32csr/guiconsole.c @@ -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)