From 0462921352dcb01de3d04404756687e18b76ca32 Mon Sep 17 00:00:00 2001 From: David Rose Date: Sat, 31 Jul 2004 23:27:54 +0000 Subject: [PATCH] fix output --- panda/src/builder/builderBucket.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/panda/src/builder/builderBucket.cxx b/panda/src/builder/builderBucket.cxx index b2eb5f8e19..162ff5234e 100644 --- a/panda/src/builder/builderBucket.cxx +++ b/panda/src/builder/builderBucket.cxx @@ -235,7 +235,7 @@ output(ostream &out) const { TexCoords::const_iterator ti; for (ti = _texcoords.begin(); ti != _texcoords.end(); ++ti) { - out << "_texcoords[\"" << (*ti).first << "\"] = " + out << "_texcoords[\"" << (*ti).first->get_name() << "\"] = " << (void *)(*ti).second << "\n"; }