lcLocale -> lcFileLocale. Now also contains platform

This commit is contained in:
Ladislav Zezula
2022-09-28 20:15:07 +02:00
parent 7a664bf6be
commit 6c113f6681
14 changed files with 84 additions and 71 deletions

View File

@@ -209,10 +209,9 @@ LCID WINAPI SFileGetLocale()
return g_lcFileLocale;
}
LCID WINAPI SFileSetLocale(LCID lcNewLocale)
LCID WINAPI SFileSetLocale(LCID lcFileLocale)
{
g_lcFileLocale = lcNewLocale;
return g_lcFileLocale;
return (g_lcFileLocale = lcFileLocale);
}
//-----------------------------------------------------------------------------