From e6182247f61b34b3b2b1fb9e331d63206c19293f Mon Sep 17 00:00:00 2001 From: Dmitry Gorbachev Date: Sun, 9 Jan 2011 15:11:49 +0000 Subject: [PATCH] [FREELDR] Delete a duplicate line. svn path=/trunk/; revision=50339 --- reactos/boot/freeldr/freeldr/arch/i386/machpc.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/reactos/boot/freeldr/freeldr/arch/i386/machpc.c b/reactos/boot/freeldr/freeldr/arch/i386/machpc.c index 1b985f28c4d..879e2029d6e 100644 --- a/reactos/boot/freeldr/freeldr/arch/i386/machpc.c +++ b/reactos/boot/freeldr/freeldr/arch/i386/machpc.c @@ -23,7 +23,7 @@ VOID PcMachInit(const char *CmdLine) { EnableA20(); - + /* Setup vtbl */ MachVtbl.ConsPutChar = PcConsPutChar; MachVtbl.ConsKbHit = PcConsKbHit; @@ -33,7 +33,6 @@ PcMachInit(const char *CmdLine) MachVtbl.VideoGetDisplaySize = PcVideoGetDisplaySize; MachVtbl.VideoGetBufferSize = PcVideoGetBufferSize; MachVtbl.VideoSetTextCursorPosition = PcVideoSetTextCursorPosition; - MachVtbl.VideoSetTextCursorPosition = PcVideoSetTextCursorPosition; MachVtbl.VideoHideShowTextCursor = PcVideoHideShowTextCursor; MachVtbl.VideoPutChar = PcVideoPutChar; MachVtbl.VideoCopyOffScreenBufferToVRAM = PcVideoCopyOffScreenBufferToVRAM;