Add a hack which allows to boot with Armenian language.

svn path=/trunk/; revision=38170
This commit is contained in:
Dmitry Gorbachev 2008-12-18 12:26:52 +00:00
parent 32eb774e68
commit 6c8e595de5

View file

@ -262,8 +262,11 @@ FrLdrLoadNlsFiles(PCHAR szSystemRoot,
rc = RegQueryValue(hKey, szIdBuffer, NULL, (PUCHAR)szNameBuffer, &BufferSize);
if (rc != ERROR_SUCCESS) {
strcpy(szErrorOut, "ACP NLS Setting exists, but isn't readable");
return(FALSE);
//strcpy(szErrorOut, "ACP NLS Setting exists, but isn't readable");
//return(FALSE);
/* HACK */
wcscpy(szNameBuffer, L"c_1252.nls");
}
/* load ANSI codepage table */
@ -288,8 +291,11 @@ FrLdrLoadNlsFiles(PCHAR szSystemRoot,
rc = RegQueryValue(hKey, szIdBuffer, NULL, (PUCHAR)szNameBuffer, &BufferSize);
if (rc != ERROR_SUCCESS) {
strcpy(szErrorOut, "OEMCP NLS setting exists, but isn't readable");
return(FALSE);
//strcpy(szErrorOut, "OEMCP NLS setting exists, but isn't readable");
//return(FALSE);
/* HACK */
wcscpy(szNameBuffer, L"c_437.nls");
}
/* load OEM codepage table */