From 914b5636e4da6aa42a2efb6a97d77ee35a21d169 Mon Sep 17 00:00:00 2001 From: curt Date: Mon, 11 Mar 2002 22:55:01 +0000 Subject: [PATCH] Removed some extra debugging output that wasn't supposed to be committed. --- src/Objects/obj.cxx | 2 -- src/Scenery/tileentry.cxx | 2 -- 2 files changed, 4 deletions(-) diff --git a/src/Objects/obj.cxx b/src/Objects/obj.cxx index 5a78d63ed..e56354d5d 100644 --- a/src/Objects/obj.cxx +++ b/src/Objects/obj.cxx @@ -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() diff --git a/src/Scenery/tileentry.cxx b/src/Scenery/tileentry.cxx index a1bbf12d5..3d3b8c6ca 100644 --- a/src/Scenery/tileentry.cxx +++ b/src/Scenery/tileentry.cxx @@ -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; -- 2.39.5