MeasureCalc: Only report "HighBound" error message after initial update

This commit is contained in:
Brian Ferguson 2013-08-16 13:19:22 -06:00
parent 9c2d75ce69
commit cd140ff0f6

View File

@ -106,8 +106,13 @@ void MeasureCalc::ReadOptions(ConfigParser& parser, const WCHAR* section)
{
// Reset bounds if |m_LowBound| is greater than or equal to |m_HighBound|
if (m_LowBound >= m_HighBound)
{
// Only report an error after the first update cycle
// For cases where "HighBound=[SomeMeasure]", and [SomeMeasure] would initially equal 0
if (m_Initialized)
{
LogErrorF(this, L"\"LowBound\" (%i) must be less then \"HighBound\" (%i)", m_LowBound, m_HighBound);
}
m_LowBound = DEFAULT_LOWER_BOUND;
m_HighBound = DEFAULT_UPPER_BOUND;