Accidentally flipped an assertion last commit
This commit is contained in:
+2
-1
@@ -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.");
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user