From 006e4b96d588def65846e263ba10ded4f92a0950 Mon Sep 17 00:00:00 2001 From: Andrey Korotaev Date: Mon, 14 Jan 2008 18:05:28 +0000 Subject: [PATCH] Fix visual glitch in usetup on BootLoader page when pressing up key svn path=/trunk/; revision=31803 --- reactos/base/setup/usetup/interface/usetup.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/reactos/base/setup/usetup/interface/usetup.c b/reactos/base/setup/usetup/interface/usetup.c index 4ab401c3f6e..ae783d4bf54 100644 --- a/reactos/base/setup/usetup/interface/usetup.c +++ b/reactos/base/setup/usetup/interface/usetup.c @@ -3270,13 +3270,13 @@ BootLoaderPage(PINPUT_RECORD Ir) else if ((Ir->Event.KeyEvent.uChar.AsciiChar == 0x00) && (Ir->Event.KeyEvent.wVirtualKeyCode == VK_UP)) /* UP */ { - CONSOLE_NormalTextXY (8, Line, 48, 1); + CONSOLE_NormalTextXY (8, Line, 60, 1); Line--; if (Line<12) Line=14; if (Line>14) Line=12; - CONSOLE_InvertTextXY (8, Line, 48, 1); + CONSOLE_InvertTextXY (8, Line, 60, 1); } else if ((Ir->Event.KeyEvent.uChar.AsciiChar == 0x00) && (Ir->Event.KeyEvent.wVirtualKeyCode == VK_F3)) /* F3 */