From 26cf82fa5b22568404b110e568d483ed667b92d1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Herm=C3=A8s=20B=C3=A9lusca-Ma=C3=AFto?= Date: Sat, 22 Oct 2016 21:46:58 +0000 Subject: [PATCH] [MODE]: Forgot this change too (related to kbd rate before delay). svn path=/trunk/; revision=73023 --- reactos/base/applications/cmdutils/mode/mode.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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; }