Accidentally flipped an assertion last commit

This commit is contained in:
James Seibel
2024-11-21 07:41:31 -06:00
parent 6ff2c9f14c
commit 23c160e948
@@ -275,7 +275,8 @@ public class ColumnRenderBufferBuilder
// the old logic handled additional cases, but they never appeared to fire,
// so just these two cases should be fine
if (adjDetailLevel == thisDetailLevel || adjDetailLevel > thisDetailLevel)
boolean expectedDetailLevels = (adjDetailLevel == thisDetailLevel) || (adjDetailLevel > thisDetailLevel);
if (!expectedDetailLevels)
{
LodUtil.assertNotReach("Mismatch between adjacent detail level ["+adjDetailLevel+"] and this render source's detail level ["+thisDetailLevel+"]. Detail levels should be adj >= this.");
}