From 034f224de74e58f841e242d1acebdf85d2e3d70c Mon Sep 17 00:00:00 2001 From: daveluff Date: Tue, 11 Mar 2003 23:41:03 +0000 Subject: [PATCH] Need to call Init() when initialising tower, otherwise bad things happen... --- src/ATC/ATCmgr.cxx | 1 + 1 file changed, 1 insertion(+) diff --git a/src/ATC/ATCmgr.cxx b/src/ATC/ATCmgr.cxx index f32c7ef6a..e6a9cb774 100644 --- a/src/ATC/ATCmgr.cxx +++ b/src/ATC/ATCmgr.cxx @@ -451,6 +451,7 @@ void FGATCMgr::FreqSearch(int channel) { t->SetData(&data); comm_atc_ptr[chan] = t; t->SetDisplay(); + t->Init(); atc_list.push_back(t); } } else if (comm_type[chan] == APPROACH) {