mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-02 04:13:34 +00:00
- 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:
@@ -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 */
|
||||
|
||||
Reference in New Issue
Block a user