From ca230a7cf390a29bce28aca17dfba6330c87a63f Mon Sep 17 00:00:00 2001 From: daveluff Date: Fri, 19 Sep 2003 09:38:22 +0000 Subject: [PATCH] Remove a couple of extraneous lines. --- src/ATC/AILocalTraffic.cxx | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/src/ATC/AILocalTraffic.cxx b/src/ATC/AILocalTraffic.cxx index 3b04df148..040b943d1 100644 --- a/src/ATC/AILocalTraffic.cxx +++ b/src/ATC/AILocalTraffic.cxx @@ -154,12 +154,10 @@ bool FGAILocalTraffic::Init(string ICAO, OperatingState initialState, PatternLeg //cout << "FGAILocalTraffic.Init(...) called" << endl; // Hack alert - Hardwired path!! string planepath = "Aircraft/c172/Models/c172-dpm.ac"; - SGPath path = globals->get_fg_root(); - path.append(planepath); - ssgBranch *model = sgLoad3DModel( globals->get_fg_root(), - planepath.c_str(), - globals->get_props(), - globals->get_sim_time_sec() ); + ssgBranch *model = sgLoad3DModel( globals->get_fg_root(), + planepath.c_str(), + globals->get_props(), + globals->get_sim_time_sec() ); aip.init( model ); aip.setVisible(false); // This will be set to true once a valid ground elevation has been determined globals->get_scenery()->get_scene_graph()->addKid(aip.getSceneGraph());