From 1e87ce30c8dab9adf0488e5d0dca315caf46fe86 Mon Sep 17 00:00:00 2001 From: David Rose Date: Fri, 30 Sep 2005 00:30:58 +0000 Subject: [PATCH] better output when one NodePath is empty --- panda/src/pgraph/texProjectorEffect.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/panda/src/pgraph/texProjectorEffect.cxx b/panda/src/pgraph/texProjectorEffect.cxx index b113c74428..d6143cdbeb 100644 --- a/panda/src/pgraph/texProjectorEffect.cxx +++ b/panda/src/pgraph/texProjectorEffect.cxx @@ -168,8 +168,8 @@ output(ostream &out) const { for (mi = _stages.begin(); mi != _stages.end(); ++mi) { TextureStage *stage = (*mi).first; const StageDef &def = (*mi).second; - out << " " << stage->get_name() << "(" << def._to.get_name() - << ", " << def._from.get_name() << ")"; + out << " " << stage->get_name() << "(" << def._to + << ", " << def._from << ")"; } }