Skip to content

Commit

Permalink
Merge pull request #151 from naitro2010/bugfix-reflection-map-manager…
Browse files Browse the repository at this point in the history
…-assert

Fix for build error with reflection map manager assert.
  • Loading branch information
VectorMutt authored Dec 21, 2024
2 parents d9a822a + f89f13e commit 1c27ec9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion indra/newview/llreflectionmapmanager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 1c27ec9

Please sign in to comment.