Previous beta changed everything to be case sensitive. Fixed.

This commit is contained in:
Kimmo Pekkola
2009-08-27 15:42:24 +00:00
parent ffdec7be65
commit f5f257a595
3 changed files with 42 additions and 24 deletions

View File

@ -198,7 +198,7 @@ void CMeterString::ReadConfig(const WCHAR* section)
m_AutoScale = 0!=parser.ReadInt(section, L"AutoScale", 0);
m_ClipString = 0!=parser.ReadInt(section, L"ClipString", 0);
m_FontSize = parser.ReadInt(section, L"FontSize", 10);
m_FontSize = parser.ReadFormula(section, L"FontSize", 10);
m_NumOfDecimals = parser.ReadInt(section, L"NumOfDecimals", -1);
m_Angle = (Gdiplus::REAL)parser.ReadFloat(section, L"Angle", 0.0);