the bool check was inverted. reported by Federico Maguolo.

This commit is contained in:
Mathieu Lacage
2007-11-29 16:28:16 +01:00
parent 210fb3539c
commit 0b43b4fdc2

View File

@@ -948,11 +948,11 @@ MacLow::IsNavZero (void) const
{
if (m_lastNavStart + m_lastNavDuration > Simulator::Now ())
{
return false;
return true;
}
else
{
return true;
return false;
}
}