Browse Source

oops, left some cerr's in

David Rose 24 years ago
parent
commit
f5523df05c

+ 2 - 0
pandatool/src/egg-palettize/paletteImage.cxx

@@ -358,11 +358,13 @@ check_solitary() {
     Placements::const_iterator pi;
     for (pi = _placements.begin(); pi != _placements.end(); ++pi) {
       TexturePlacement *placement = (*pi);
+      /*
       if (!(placement->get_omit_reason() == OR_none ||
             placement->get_omit_reason() == OR_solitary)) {
         cerr << "texture " << *placement->get_texture() << " is omitted for "
              << placement->get_omit_reason() << "\n";
       }
+      */
       nassertv(placement->get_omit_reason() == OR_none ||
                placement->get_omit_reason() == OR_solitary);
       placement->not_solitary();

+ 0 - 1
pandatool/src/egg-palettize/palettePage.cxx

@@ -105,7 +105,6 @@ place_all() {
   Assigned::const_iterator ai;
   for (ai = _assigned.begin(); ai != _assigned.end(); ++ai) {
     TexturePlacement *placement = (*ai);
-    cerr << "Placing " << *placement->get_texture() << "\n";
     place(placement);
   }