From: Magnus Olsen Date: Fri, 11 Nov 2005 20:07:05 +0000 (+0000) Subject: Add opitopn do not isntall bootloarder as Bug: 961 suggest to make it easy for... X-Git-Tag: backups/ros-branch-0_2_9@19949~758 X-Git-Url: https://git.reactos.org/?p=reactos.git;a=commitdiff_plain;h=92d8d2d3d701a5ce74ab9b0bc068042ded493c86 Add opitopn do not isntall bootloarder as Bug: 961 suggest to make it easy for other people that do not want install freeldr. svn path=/trunk/; revision=19145 --- diff --git a/reactos/subsys/system/usetup/usetup.c b/reactos/subsys/system/usetup/usetup.c index e930201678c..8dd6979a57a 100644 --- a/reactos/subsys/system/usetup/usetup.c +++ b/reactos/subsys/system/usetup/usetup.c @@ -3310,6 +3310,7 @@ BootLoaderPage(PINPUT_RECORD Ir) SetTextXY(8, 12, "Install bootloader on the harddisk (MBR)."); SetTextXY(8, 13, "Install bootloader on a floppy disk."); + SetTextXY(8, 14, "Skip install bootloader."); InvertTextXY (8, Line, 48, 1); SetStatusText(" ENTER = Continue F3 = Quit"); @@ -3322,28 +3323,25 @@ BootLoaderPage(PINPUT_RECORD Ir) (Ir->Event.KeyEvent.wVirtualKeyCode == VK_DOWN)) /* DOWN */ { NormalTextXY (8, Line, 48, 1); - if (Line == 12) - Line = 13; - else if (Line == 13) - Line = 12; -#if 0 - else - Line++; -#endif + + Line++; + if (Line<12) Line=14; + if (Line>14) Line=12; + + + InvertTextXY (8, Line, 48, 1); } else if ((Ir->Event.KeyEvent.uChar.AsciiChar == 0x00) && (Ir->Event.KeyEvent.wVirtualKeyCode == VK_UP)) /* UP */ { NormalTextXY (8, Line, 48, 1); - if (Line == 12) - Line = 13; - else if (Line == 13) - Line = 12; -#if 0 - else - Line--; -#endif + + Line--; + if (Line<12) Line=14; + if (Line>14) Line=12; + + InvertTextXY (8, Line, 48, 1); } else if ((Ir->Event.KeyEvent.uChar.AsciiChar == 0x00) && @@ -3363,6 +3361,10 @@ BootLoaderPage(PINPUT_RECORD Ir) { return BOOT_LOADER_FLOPPY_PAGE; } + else if (Line == 14) + { + return SUCCESS_PAGE;; + } return BOOT_LOADER_PAGE; }