minor style change

This commit is contained in:
David Rose 2003-01-31 21:09:54 +00:00
parent 7a7563ba2d
commit 10557d33c5

View File

@ -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;