Browse Source

fix output

David Rose 21 years ago
parent
commit
0462921352
1 changed files with 1 additions and 1 deletions
  1. 1 1
      panda/src/builder/builderBucket.cxx

+ 1 - 1
panda/src/builder/builderBucket.cxx

@@ -235,7 +235,7 @@ output(ostream &out) const {
 
 
   TexCoords::const_iterator ti;
   TexCoords::const_iterator ti;
   for (ti = _texcoords.begin(); ti != _texcoords.end(); ++ti) {
   for (ti = _texcoords.begin(); ti != _texcoords.end(); ++ti) {
-    out << "_texcoords[\"" << (*ti).first << "\"] = " 
+    out << "_texcoords[\"" << (*ti).first->get_name() << "\"] = " 
         << (void *)(*ti).second << "\n";
         << (void *)(*ti).second << "\n";
   }
   }