Fixed mistake in 3653e16

This commit is contained in:
Birunthan Mohanathas 2012-07-17 17:49:37 +03:00
parent 3653e16f88
commit ef2942a6c1

View File

@ -267,12 +267,12 @@ void CMeter::ReadOptions(CConfigParser& parser, const WCHAR* section)
WCHAR lastChar = coord[coord.size() - 1]; WCHAR lastChar = coord[coord.size() - 1];
if (lastChar == L'r') if (lastChar == L'r')
{ {
m_RelativeX = POSITION_RELATIVE_TL; m_RelativeY = POSITION_RELATIVE_TL;
coord.pop_back(); coord.pop_back();
} }
else if (lastChar == L'R') else if (lastChar == L'R')
{ {
m_RelativeX = POSITION_RELATIVE_BR; m_RelativeY = POSITION_RELATIVE_BR;
coord.pop_back(); coord.pop_back();
} }
else else