Cycles: Fix typo in comment

This commit is contained in:
Sergey Sharybin
2017-08-31 13:24:32 +02:00
parent a35aae9e49
commit 8b9e1707a1

View File

@@ -673,7 +673,7 @@ BVHNode* BVHBuild::build_node(const BVHObjectBinning& range, int level)
return create_leaf_node(range, references);
}
}
/* Check whether unaligned split is better than the regulat one. */
/* Check whether unaligned split is better than the regular one. */
if(unalignedSplitSAH < splitSAH) {
do_unalinged_split = true;
}