diff --git a/reactos/base/applications/cmdutils/mode/mode.c b/reactos/base/applications/cmdutils/mode/mode.c index a994983d521..e4e4faf75c6 100644 --- a/reactos/base/applications/cmdutils/mode/mode.c +++ b/reactos/base/applications/cmdutils/mode/mode.c @@ -216,14 +216,14 @@ int ShowConsoleStatus(VOID) ConResPrintf(StdOut, IDS_CONSOLE_STATUS_LINES, csbi.dwSize.Y); ConResPrintf(StdOut, IDS_CONSOLE_STATUS_COLS , csbi.dwSize.X); } - if (SystemParametersInfoW(SPI_GETKEYBOARDDELAY, 0, &dwKbdDelay, 0)) - { - ConResPrintf(StdOut, IDS_CONSOLE_KBD_DELAY, dwKbdDelay); - } if (SystemParametersInfoW(SPI_GETKEYBOARDSPEED, 0, &dwKbdSpeed, 0)) { ConResPrintf(StdOut, IDS_CONSOLE_KBD_RATE, dwKbdSpeed); } + if (SystemParametersInfoW(SPI_GETKEYBOARDDELAY, 0, &dwKbdDelay, 0)) + { + ConResPrintf(StdOut, IDS_CONSOLE_KBD_DELAY, dwKbdDelay); + } ConResPrintf(StdOut, IDS_CONSOLE_CODEPAGE, GetConsoleOutputCP()); return 0; }