Module: wine Branch: master Commit: 5f18947d79d6ec9b5d4e8ab2e2490a0286529692 URL: http://source.winehq.org/git/wine.git/?a=commit;h=5f18947d79d6ec9b5d4e8ab2e2...
Author: Francois Gouget fgouget@free.fr Date: Wed Jan 7 12:32:59 2009 +0100
winedos: VGA_SetTextAttribute() is unused so remove it.
---
dlls/winedos/vga.c | 5 ----- dlls/winedos/vga.h | 1 - 2 files changed, 0 insertions(+), 6 deletions(-)
diff --git a/dlls/winedos/vga.c b/dlls/winedos/vga.c index 12062de..f4cf276 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 10f5c49..cee6d49 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);