Fixed: missing ; after a nlassert

This commit is contained in:
vl 2010-05-17 18:07:41 +02:00
parent 5761bbf618
commit a7e8947da8

View file

@ -136,9 +136,9 @@ void CGrpProfileDynFollowPath::updateProfile(uint ticksSinceLastUpdate)
_FollowRoute.setAIProfile(fr);
// faire gaffe à l'init du CGrpProfileFollowRouteSpawn dans le cadre statique .. :\ (adapter?)
#ifdef NL_DEBUG
nlassert(_CurrentZone==_CurrentRoad->startZone() || _CurrentZone==_CurrentRoad->endZone())
#endif
#ifdef NL_DEBUG
nlassert(_CurrentZone==_CurrentRoad->startZone() || _CurrentZone==_CurrentRoad->endZone());
#endif
fr->setDirection(_CurrentRoad->startZone()==_CurrentZone); // CurrentZone);
}
else