]> git.mxchange.org Git - flightgear.git/blobdiff - src/Objects/matlib.cxx
Replaced some debugging structure David inadvertantly removed.
[flightgear.git] / src / Objects / matlib.cxx
index 0ea5d7b90e2e19bb4232c07be8808a0758081433..272c23fc3fb75a185699286cdcf3ecfd052318cd 100644 (file)
@@ -71,7 +71,7 @@ bool FGMaterialLib::load( const string& mpath ) {
 
   SGPropertyNode materials;
 
-  cout << "Reading materials from " << mpath << endl;
+  SG_LOG(SG_INPUT, SG_INFO, "Reading materials from " << mpath);
   try {
     readProperties(mpath, &materials);
   } catch (const sg_exception &ex) {
@@ -211,7 +211,8 @@ int FGMaterialLib::get_step ()
 void FGMaterialLib::load_next_deferred() {
     // container::iterator it = begin();
     for ( material_map_iterator it = begin(); it != end(); it++ ) {
-       const string &key = it->first;
+       /* we don't need the key, but here's how we'd get it if we wanted it. */
+        // const string &key = it->first;
        FGNewMat *slot = it->second;
        if (slot->load_texture())
          return;