From 10557d33c5c46c36385a7c9f76a34a1618a5f7e9 Mon Sep 17 00:00:00 2001 From: David Rose Date: Fri, 31 Jan 2003 21:09:54 +0000 Subject: [PATCH] minor style change --- panda/src/pgraph/modelPool.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/panda/src/pgraph/modelPool.cxx b/panda/src/pgraph/modelPool.cxx index 16833d756f..33e4d1622e 100644 --- a/panda/src/pgraph/modelPool.cxx +++ b/panda/src/pgraph/modelPool.cxx @@ -23,7 +23,7 @@ ModelPool *ModelPool::_global_ptr = (ModelPool *)NULL; -static Loader _model_loader; +static Loader model_loader; //////////////////////////////////////////////////////////////////// // Function: ModelPool::ns_has_model @@ -58,7 +58,7 @@ ns_load_model(const string &filename) { loader_cat.info() << "Loading model " << filename << "\n"; - PT(PandaNode) node = _model_loader.load_sync(filename); + PT(PandaNode) node = model_loader.load_sync(filename); if (node.is_null()) { // This model was not found. return (PandaNode *)NULL;