Browse Source

Merge pull request #426 from Azaezel/alpha40/typofix

membervar compile fix
Brian Roberts 4 years ago
parent
commit
aae264d1ac
1 changed files with 1 additions and 1 deletions
  1. 1 1
      Engine/source/T3D/shapeBase.cpp

+ 1 - 1
Engine/source/T3D/shapeBase.cpp

@@ -358,7 +358,7 @@ bool ShapeBaseData::preload(bool server, String &errorStr)
    }
    }
    PersistenceManager *persistMgr;
    PersistenceManager *persistMgr;
    if (!Sim::findObject("ServerAssetValidator", persistMgr)) Con::errorf("ServerAssetValidator not found!");
    if (!Sim::findObject("ServerAssetValidator", persistMgr)) Con::errorf("ServerAssetValidator not found!");
-   if (server && persistMgr && shapeAssetId == StringTable->EmptyString())
+   if (server && persistMgr && mShapeAssetId == StringTable->EmptyString())
    {
    {
       persistMgr->setDirty(this);
       persistMgr->setDirty(this);
    }
    }