- Make use of the function Herve implemented in previous commit to flush key buffer at the beginning of every page in usetup.

See issue #2131 for more details.

svn path=/trunk/; revision=30069
This commit is contained in:
Aleksey Bragin
2007-11-02 13:13:55 +00:00
parent fae0c09e4b
commit ed826bf53e
3 changed files with 11 additions and 0 deletions
@@ -128,6 +128,12 @@ CONSOLE_ConOutPrintf(
NULL);
}
BOOL
CONSOLE_Flush(VOID)
{
return FlushConsoleInputBuffer(StdInput);
}
SHORT
CONSOLE_GetCursorX(VOID)
{
@@ -57,6 +57,9 @@ VOID
CONSOLE_ConOutPuts(
IN LPCSTR szText);
BOOL
CONSOLE_Flush(VOID);
SHORT
CONSOLE_GetCursorX(VOID);
@@ -3582,6 +3582,8 @@ RunUSetup(VOID)
CONSOLE_SetUnderlinedTextXY(4, 3, " ReactOS " KERNEL_VERSION_STR " Setup ");
CONSOLE_Flush();
switch (Page)
{
/* Start page */