mirror of
https://github.com/reactos/reactos.git
synced 2025-04-20 12:29:56 +00:00
[USETUP]
Fix serious path localization issue. Patch by Wim Hueskes. CORE-9656 #resolve #comment Thanks a lot! svn path=/trunk/; revision=71268
This commit is contained in:
parent
b604470d8b
commit
a8b256c57b
1 changed files with 7 additions and 0 deletions
|
@ -629,6 +629,10 @@ UpdateKBLayout(VOID)
|
|||
*
|
||||
* Next pages: IntroPage, QuitPage
|
||||
*
|
||||
* SIDEEFFECTS
|
||||
* Init SelectedLanguageId
|
||||
* Init LanguageId
|
||||
*
|
||||
* RETURNS
|
||||
* Number of the next page.
|
||||
*/
|
||||
|
@ -772,6 +776,8 @@ LanguagePage(PINPUT_RECORD Ir)
|
|||
* Init RequiredPartitionDiskSpace
|
||||
* Init IsUnattendedSetup
|
||||
* If unattended, init *List and sets the Codepage
|
||||
* If unattended, init SelectedLanguageId
|
||||
* If unattended, init LanguageId
|
||||
*
|
||||
* RETURNS
|
||||
* Number of the next page.
|
||||
|
@ -906,6 +912,7 @@ SetupStartPage(PINPUT_RECORD Ir)
|
|||
|
||||
/* new part */
|
||||
wcscpy(SelectedLanguageId,LocaleID);
|
||||
LanguageId = (LANGID)(wcstol(SelectedLanguageId, NULL, 16) & 0xFFFF);
|
||||
|
||||
/* first we hack LanguageList */
|
||||
ListEntry = GetFirstListEntry(LanguageList);
|
||||
|
|
Loading…
Reference in a new issue