diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2021-10-12 08:36:02 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-12 08:36:02 +0200 |
commit | 34624068583e472cc69c6864be360821265e764b (patch) | |
tree | 4efad9cf39e7a41f16a2a906d3a017a571caaf6c /modules/csg/csg.h | |
parent | 1bd6a2f0200acdab0fb595b614756cc09fc1d2d7 (diff) | |
parent | b981c111c959d52cd1eb1318ca59b7dd16782ce2 (diff) |
Merge pull request #53694 from CakHuri/fix-typo-csg
Fixed a typo in csg module
Diffstat (limited to 'modules/csg/csg.h')
-rw-r--r-- | modules/csg/csg.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/csg/csg.h b/modules/csg/csg.h index c872860486..b1fe933268 100644 --- a/modules/csg/csg.h +++ b/modules/csg/csg.h @@ -67,7 +67,7 @@ struct CSGBrushOperation { enum Operation { OPERATION_UNION, OPERATION_INTERSECTION, - OPERATION_SUBSTRACTION, + OPERATION_SUBTRACTION, }; void merge_brushes(Operation p_operation, const CSGBrush &p_brush_a, const CSGBrush &p_brush_b, CSGBrush &r_merged_brush, float p_vertex_snap); |