https://git.reactos.org/?p=reactos.git;a=commitdiff;h=44aef85db1d716825527b…
commit 44aef85db1d716825527b5abedcc47bf735591ec
Author: Raul Tambre <raul(a)tambre.ee>
AuthorDate: Sun Feb 24 11:37:42 2019 +0200
Commit: Hermès BÉLUSCA - MAÏTO <hermes.belusca-maito(a)reactos.org>
CommitDate: Sun Feb 24 15:21:38 2019 +0100
[WINLOGON] Fix fallback keyboard layout flags
---
base/system/winlogon/winlogon.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/base/system/winlogon/winlogon.c b/base/system/winlogon/winlogon.c
index eeba3a2334..68783c828b 100644
--- a/base/system/winlogon/winlogon.c
+++ b/base/system/winlogon/winlogon.c
@@ -204,7 +204,7 @@ InitKeyboardLayouts(VOID)
if (!bRet)
{
/* If we failed, load US keyboard layout */
- if (LoadKeyboardLayoutW(L"00000409", 0x04090409))
+ if (LoadKeyboardLayoutW(L"00000409", KLF_ACTIVATE | KLF_SUBSTITUTE_OK |
KLF_REPLACELANG | KLF_SETFORPROCESS))
bRet = TRUE;
}