]> git.mxchange.org Git - flightgear.git/commitdiff
Emergency fix of framerate problem
authordaveluff <daveluff>
Mon, 31 Mar 2003 09:51:36 +0000 (09:51 +0000)
committerdaveluff <daveluff>
Mon, 31 Mar 2003 09:51:36 +0000 (09:51 +0000)
src/ATC/tower.cxx

index e55107968b65f02a143a276e17b5efa7938958b2..72eedfbed6c0674699cfabc3a125d8e8474d55d0 100644 (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);
 }