Fix visual glitch in usetup on BootLoader page when pressing up key

svn path=/trunk/; revision=31803
This commit is contained in:
Andrey Korotaev 2008-01-14 18:05:28 +00:00
parent 415e9cecc1
commit 006e4b96d5

View file

@ -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 */