diff options
author | Alexander Gavriliuk <alexandrgproductengine@lindenlab.com> | 2023-08-30 16:16:26 +0200 |
---|---|---|
committer | Guru <alexandrgproductengine@lindenlab.com> | 2023-08-30 16:35:29 +0200 |
commit | 6a1846e91acf0b003c19f2d08a6ccb13d30f39a0 (patch) | |
tree | d99b62bdfe7bc32ddac8c737afefcaa15e486f1c /indra/newview | |
parent | 89f2165b4170d9fddc10a55292c28750093a22a0 (diff) |
SL-18366 Crash in LLCullResult::assertDrawMapsEmpty - make the error message more informative
Diffstat (limited to 'indra/newview')
-rw-r--r-- | indra/newview/llspatialpartition.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/indra/newview/llspatialpartition.cpp b/indra/newview/llspatialpartition.cpp index c5df09d6e5..29d42b3c00 100644 --- a/indra/newview/llspatialpartition.cpp +++ b/indra/newview/llspatialpartition.cpp @@ -4076,7 +4076,8 @@ void LLCullResult::assertDrawMapsEmpty() { if (mRenderMapSize[i] != 0) { - LL_ERRS() << "Stale LLDrawInfo's in LLCullResult!" << LL_ENDL; + LL_ERRS() << "Stale LLDrawInfo's in LLCullResult!" + << " (mRenderMapSize[" << i << "] = " << mRenderMapSize[i] << ")" << LL_ENDL; } } } |