]> git.mxchange.org Git - flightgear.git/blobdiff - src/ATC/ATCDialog.cxx
try to fix yet another crash bug (don't worry, there's one for anybody!)
[flightgear.git] / src / ATC / ATCDialog.cxx
index 3119ae3364adbb6862f4ee114f5656b0f677efc9..2946478da79633c790f46e5801005ff4526be488 100644 (file)
@@ -33,7 +33,6 @@
 #include "ATCDialog.hxx"
 #include "ATC.hxx"
 #include "ATCmgr.hxx"
-#include "ATCdisplay.hxx"
 #include "commlist.hxx"
 #include "ATCutils.hxx"
 #include <Airports/simple.hxx>
@@ -274,7 +273,6 @@ void FGATCDialog::PopupCallback(int num) {
                        string pilot = atcptr->GenText(a.transmission, a.callback_code);
                        fgSetString("/sim/messages/pilot", pilot.c_str());
                        // This is the user's speech getting displayed.
-                       globals->get_ATC_display()->RegisterSingleMessage(pilot);
                        _callbackPending = true;
                        _callbackTimer = 0.0;
                        _callbackWait = 5.0;
@@ -316,7 +314,7 @@ void FGATCDialog::FreqDialog() {
        // remove all dynamic airport/ATC buttons
        button_group->removeChildren("button", false);
 
-       // Find the ATC stations within a reasonable range (about 40 miles?)
+       // Find the ATC stations within a reasonable range
        comm_list_type atc_stations;
        comm_list_iterator atc_stat_itr;
        
@@ -327,7 +325,7 @@ void FGATCDialog::FreqDialog() {
                lat * SGD_DEGREES_TO_RADIANS, elev));
 
        // search stations in range
-       int num_stat = current_commlist->FindByPos(lon, lat, elev, 40.0, &atc_stations);
+       int num_stat = current_commlist->FindByPos(lon, lat, elev, 50.0, &atc_stations);
        if (num_stat != 0) {
                map<atcdata, bool> uniq;
                // fill map (sorts by distance and removes duplicates)