From ec88373eb702822a66d298354f97556375741f16 Mon Sep 17 00:00:00 2001 From: frohlich Date: Sun, 7 Jun 2009 11:27:53 +0000 Subject: [PATCH] Cleanup. Modified Files: simgear/scene/model/SGReaderWriterXML.cxx --- simgear/scene/model/SGReaderWriterXML.cxx | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/simgear/scene/model/SGReaderWriterXML.cxx b/simgear/scene/model/SGReaderWriterXML.cxx index f6189274..f3fb644b 100644 --- a/simgear/scene/model/SGReaderWriterXML.cxx +++ b/simgear/scene/model/SGReaderWriterXML.cxx @@ -188,7 +188,7 @@ sgLoad3DModel_internal(const string &path, // Assume that textures are in // the same location as the XML file. if (!model) { - if (texturepath.extension() != "") + if (!texturepath.extension().empty()) texturepath = texturepath.dir(); options->setDatabasePath(texturepath.str()); @@ -301,7 +301,7 @@ sgLoad3DModel_internal(const string &path, particle_nodes = props->getChildren("particlesystem"); for (unsigned i = 0; i < particle_nodes.size(); ++i) { if (i==0) { - if (texturepath.extension() != "") + if (!texturepath.extension().empty()) texturepath = texturepath.dir(); options->setDatabasePath(texturepath.str()); @@ -322,17 +322,17 @@ sgLoad3DModel_internal(const string &path, SGAnimation::animate(group.get(), animation_nodes[i], prop_root, options.get()); - if (props->hasChild("debug-outfile")) { - std::string outputfile = props->getStringValue("debug-outfile", - "debug-model.osg"); - osgDB::writeNodeFile(*group, outputfile); - } if (!needTransform && group->getNumChildren() < 2) { model = group->getChild(0); group->removeChild(model.get()); model->setUserData(group->getUserData()); return model.release(); } + if (props->hasChild("debug-outfile")) { + std::string outputfile = props->getStringValue("debug-outfile", + "debug-model.osg"); + osgDB::writeNodeFile(*group, outputfile); + } return group.release(); } -- 2.39.5