From ef2942a6c11def79ff30fafc502267203e6134a1 Mon Sep 17 00:00:00 2001 From: Birunthan Mohanathas Date: Tue, 17 Jul 2012 17:49:37 +0300 Subject: [PATCH] Fixed mistake in 3653e16 --- Library/Meter.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Library/Meter.cpp b/Library/Meter.cpp index daeb3c40..f0eedf8e 100644 --- a/Library/Meter.cpp +++ b/Library/Meter.cpp @@ -267,12 +267,12 @@ void CMeter::ReadOptions(CConfigParser& parser, const WCHAR* section) WCHAR lastChar = coord[coord.size() - 1]; if (lastChar == L'r') { - m_RelativeX = POSITION_RELATIVE_TL; + m_RelativeY = POSITION_RELATIVE_TL; coord.pop_back(); } else if (lastChar == L'R') { - m_RelativeX = POSITION_RELATIVE_BR; + m_RelativeY = POSITION_RELATIVE_BR; coord.pop_back(); } else