Fixed typo in previous commit (UV fix); had nonsensical self-test.

This commit is contained in:
Howard Trickey
2020-06-26 07:35:16 -04:00
parent 8b119a5524
commit e1da4f09fc

View File

@@ -797,7 +797,7 @@ static bool contig_ldata_across_edge(BMesh *bm, BMEdge *e, BMFace *f1, BMFace *f
if (lef1->f == f2) {
SWAP(BMLoop *, lef1, lef2);
}
if (lef1->f != f1 || lef2 != lef2) {
if (lef1->f != f1 || lef2->f != f2) {
return false;
}
v1 = lef1->v;