Skip to content
Snippets Groups Projects
Unverified Commit f48573dc authored by naitro2010's avatar naitro2010 Committed by GitHub
Browse files

fix build error with reflection map manager assert

parent d9a822ac
No related branches found
No related tags found
No related merge requests found
......@@ -242,7 +242,7 @@ void LLReflectionMapManager::update()
}
}
llassert(mProbes[0] == mDefaultProbe);
llassert(mProbes[0] == mDefaultProbe.get());
LLVector4a camera_pos;
camera_pos.load3(LLViewerCamera::instance().getOrigin().mV);
......@@ -607,7 +607,7 @@ void LLReflectionMapManager::deleteProbe(U32 i)
LL_PROFILE_ZONE_SCOPED_CATEGORY_DISPLAY;
LLReflectionMap* probe = mProbes[i];
llassert(probe != mDefaultProbe);
llassert(probe != mDefaultProbe.get());
if (probe->mCubeIndex != -1)
{ // mark the cube index used by this probe as being free
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment