]> git.mxchange.org Git - flightgear.git/commitdiff
Removed some extra debugging output that wasn't supposed to be committed.
authorcurt <curt>
Mon, 11 Mar 2002 22:55:01 +0000 (22:55 +0000)
committercurt <curt>
Mon, 11 Mar 2002 22:55:01 +0000 (22:55 +0000)
src/Objects/obj.cxx
src/Scenery/tileentry.cxx

index 5a78d63ed08c18784d5b1a439dd753c59487428d..e56354d5d514c5efaadf036e898fbd26cf766c40 100644 (file)
@@ -911,8 +911,6 @@ bool fgBinObjLoad( const string& path, const bool is_base,
 
     if ( ! obj.read_bin( path ) ) {
        return false;
-    } else {
-        cout << "succeeded: " << path << endl;
     }
 
     // cout << "fans size = " << obj.get_fans_v().size()
index a1bbf12d5c181610ed417d0d7d6443aa371c784e..3d3b8c6caa1e3690909fa425ee36e63917023a33 100644 (file)
@@ -1043,13 +1043,11 @@ bool FGTileEntry::obj_load( const std::string& path,
        // next try the older ascii format, this is some ugly
        // weirdness because the ascii loader is *old* and hasn't been
        // updated, but hopefully we can can the ascii format soon.
-        cout << "attempting ascii load generating ocean tile" << endl;
        ssgBranch *tmp = fgAsciiObjLoad( path, this, ground_lights, is_base );
        if ( tmp ) {
            return tmp;
        } else {
            // default to an ocean tile
-            cout << "generating ocean tile" << endl;
            if ( fgGenTile( path, tile_bucket, &c, &br, geometry ) ) {
                center = c;
                bounding_radius = br;