]> git.mxchange.org Git - flightgear.git/blobdiff - src/Main/fg_commands.cxx
Fix line endings
[flightgear.git] / src / Main / fg_commands.cxx
index 4eb3449e133e67a783a789cb7761ff8fcb705f1d..2a1863411e1f439c9d749e3cc585ace428901ee7 100644 (file)
@@ -1,5 +1,9 @@
 // fg_commands.cxx - internal FGFS commands.
 
+#ifdef HAVE_CONFIG_H
+#  include "config.h"
+#endif
+
 #include <string.h>            // strcmp()
 
 #include <simgear/compiler.h>
@@ -1157,7 +1161,7 @@ do_play_audio_message (const SGPropertyNode * arg)
     FGFX *fx = (FGFX *)globals->get_subsystem("fx");
     string path = arg->getStringValue("path");
     string file = arg->getStringValue("file");
-    cout << "playing " << path << " / " << file << endl;
+    // cout << "playing " << path << " / " << file << endl;
     fx->play_message( path, file );
 
     return true;
@@ -1223,8 +1227,8 @@ do_replay (const SGPropertyNode * arg)
         fgSetDouble( "/sim/replay/time", r->get_start_time() );
     }
 
-    cout << "start = " << r->get_start_time()
-         << "  end = " << r->get_end_time() << endl;
+    // cout << "start = " << r->get_start_time()
+    //      << "  end = " << r->get_end_time() << endl;
 
     return true;
 }