]> git.mxchange.org Git - flightgear.git/blobdiff - src/Main/fg_io.cxx
- implement progress information (enabled by default; can be turned off via
[flightgear.git] / src / Main / fg_io.cxx
index efcef0d13ce396df206a5f30b186697db8da87a0..dea77dec26267cb311226963910e9825a394009c 100644 (file)
@@ -38,7 +38,7 @@
 #include <simgear/misc/strutils.hxx>
 
 #include <Network/protocol.hxx>
-#include <Network/atc610x.hxx>
+#include <Network/ATC-Main.hxx>
 #include <Network/atlas.hxx>
 #include <Network/garmin.hxx>
 #include <Network/httpd.hxx>
@@ -107,7 +107,7 @@ FGIO::parse_port_config( const string& config )
     try
     {
        if ( protocol == "atcsim" ) {
-            FGATC610x *atcsim = new FGATC610x;
+            FGATCMain *atcsim = new FGATCMain;
            atcsim->set_hz( 30 );
             if ( tokens.size() != 6 ) {
                 SG_LOG( SG_IO, SG_ALERT, "Usage: --atcsim=[no-]pedals,"
@@ -320,7 +320,7 @@ void
 FGIO::shutdown_all() {
     FGProtocol *p;
 
-    // cout << "processing I/O channels" << endl;
+    // cout << "shutting down all I/O channels" << endl;
 
     typedef vector< FGProtocol* > container;
     container::iterator i = io_channels.begin();