1
0
Fork 0

Removed some extra debugging output that wasn't supposed to be committed.

This commit is contained in:
curt 2002-03-11 22:55:01 +00:00
parent 3df76f9401
commit 914b5636e4
2 changed files with 0 additions and 4 deletions

View 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()

View 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;