1
0
Fork 0

Emergency fix of framerate problem

This commit is contained in:
daveluff 2003-03-31 09:51:36 +00:00
parent 7de4466897
commit e4e6864613

View file

@ -386,7 +386,8 @@ bool FGTower::OnActiveRunway(Point3D pt) {
if(!rwyGood) {
SG_LOG(SG_ATC, SG_WARN, "Unable to find runway " << activeRwy << " for airport ID " << ident << " in FGTower");
}
return(OnRunway(pt, &runway) ? true : false);
return false; // TODO - this is an emergency patch to correct a framerate problem - FIXME properly!!!
//return(OnRunway(pt, &runway) ? true : false);
}