From 5f18947d79d6ec9b5d4e8ab2e2490a0286529692 Mon Sep 17 00:00:00 2001 From: Francois Gouget Date: Wed, 7 Jan 2009 12:32:59 +0100 Subject: [PATCH] winedos: VGA_SetTextAttribute() is unused so remove it. --- dlls/winedos/vga.c | 5 ----- dlls/winedos/vga.h | 1 - 2 files changed, 6 deletions(-) diff --git a/dlls/winedos/vga.c b/dlls/winedos/vga.c index 12062deb3a2..f4cf2764f57 100644 --- a/dlls/winedos/vga.c +++ b/dlls/winedos/vga.c @@ -1357,11 +1357,6 @@ void VGA_PutChar(BYTE ascii) LeaveCriticalSection(&vga_lock); } -void VGA_SetTextAttribute(BYTE attr) -{ - vga_text_attr = attr; -} - void VGA_ClearText(unsigned row1, unsigned col1, unsigned row2, unsigned col2, BYTE attr) diff --git a/dlls/winedos/vga.h b/dlls/winedos/vga.h index 10f5c496074..cee6d4933f2 100644 --- a/dlls/winedos/vga.h +++ b/dlls/winedos/vga.h @@ -53,7 +53,6 @@ void VGA_SetCursorPos(unsigned X,unsigned Y); void VGA_GetCursorPos(unsigned*X,unsigned*Y); void VGA_WriteChars(unsigned X,unsigned Y,unsigned ch,int attr,int count); void VGA_PutChar(BYTE ascii); -void VGA_SetTextAttribute(BYTE attr); void VGA_ClearText(unsigned row1, unsigned col1, unsigned row2, unsigned col2, BYTE attr);