mirror of
https://github.com/reactos/reactos.git
synced 2025-02-25 09:50:02 +00:00
Fix visual glitch in usetup on BootLoader page when pressing up key
svn path=/trunk/; revision=31803
This commit is contained in:
parent
415e9cecc1
commit
006e4b96d5
1 changed files with 2 additions and 2 deletions
|
@ -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 */
|
||||
|
|
Loading…
Reference in a new issue