diff options
-rw-r--r-- | render.cc | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -203,7 +203,7 @@ CSGTerm *RenderNode::render_csg_term(double m[16], QVector<CSGTerm*> *highlights if (t2 && !t1) { t1 = t2; } else if (t2 && t1) { - t1 = new CSGTerm(CSGTerm::UNION, t1, t2); + t1 = new CSGTerm(CSGTerm::TYPE_UNION, t1, t2); } } if (modinst->tag_highlight && highlights) |