summaryrefslogtreecommitdiff
path: root/modules/csg/csg_shape.cpp
diff options
context:
space:
mode:
authorRĂ©mi Verschelde <remi@verschelde.fr>2021-10-12 08:36:02 +0200
committerGitHub <noreply@github.com>2021-10-12 08:36:02 +0200
commit34624068583e472cc69c6864be360821265e764b (patch)
tree4efad9cf39e7a41f16a2a906d3a017a571caaf6c /modules/csg/csg_shape.cpp
parent1bd6a2f0200acdab0fb595b614756cc09fc1d2d7 (diff)
parentb981c111c959d52cd1eb1318ca59b7dd16782ce2 (diff)
Merge pull request #53694 from CakHuri/fix-typo-csg
Fixed a typo in csg module
Diffstat (limited to 'modules/csg/csg_shape.cpp')
-rw-r--r--modules/csg/csg_shape.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/csg/csg_shape.cpp b/modules/csg/csg_shape.cpp
index e4297a593e..14e7896295 100644
--- a/modules/csg/csg_shape.cpp
+++ b/modules/csg/csg_shape.cpp
@@ -192,7 +192,7 @@ CSGBrush *CSGShape3D::_get_brush() {
bop.merge_brushes(CSGBrushOperation::OPERATION_INTERSECTION, *n, *nn2, *nn, snap);
break;
case CSGShape3D::OPERATION_SUBTRACTION:
- bop.merge_brushes(CSGBrushOperation::OPERATION_SUBSTRACTION, *n, *nn2, *nn, snap);
+ bop.merge_brushes(CSGBrushOperation::OPERATION_SUBTRACTION, *n, *nn2, *nn, snap);
break;
}
memdelete(n);