[RAPPS] Fix the locale fix

This commit is contained in:
Mark Jansen 2020-05-03 20:33:23 +02:00
parent cf9ba2b9ce
commit 86572f1f69
No known key found for this signature in database
GPG key ID: B39240EE84BEAE8B

View file

@ -336,7 +336,10 @@ VOID CConfigParser::CacheINILocale()
m_szCachedINISectionLocale = L"Section." + m_szLocaleID;
// turn "Section.0c0a" into "Section.0a", keeping just the neutral lang part
m_szCachedINISectionLocaleNeutral = m_szCachedINISectionLocale.Left(m_szCachedINISectionLocale.GetLength() - 2);
if (m_szLocaleID.GetLength() >= 2)
m_szCachedINISectionLocaleNeutral = L"Section." + m_szLocaleID.Right(2);
else
m_szCachedINISectionLocaleNeutral = m_szCachedINISectionLocale;
}
BOOL CConfigParser::GetString(const ATL::CStringW& KeyName, ATL::CStringW& ResultString)