Fix visual glitch in usetup on BootLoader page when pressing up key
authorAndrey Korotaev <a.korotaev@hedgewars.org>
Mon, 14 Jan 2008 18:05:28 +0000 (18:05 +0000)
committerAndrey Korotaev <a.korotaev@hedgewars.org>
Mon, 14 Jan 2008 18:05:28 +0000 (18:05 +0000)
svn path=/trunk/; revision=31803

reactos/base/setup/usetup/interface/usetup.c

index 4ab401c..ae783d4 100644 (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 */