[Bf-blender-cvs] [4696a27c65f] refactor-mesh-uv-map-generic: Fix accidentally committed typo.

Martijn Versteegh noreply at git.blender.org
Fri Nov 25 23:49:05 CET 2022


Commit: 4696a27c65f58f59cc702b1fe8ad13bc53ecd1c3
Author: Martijn Versteegh
Date:   Fri Nov 25 23:48:42 2022 +0100
Branches: refactor-mesh-uv-map-generic
https://developer.blender.org/rB4696a27c65f58f59cc702b1fe8ad13bc53ecd1c3

Fix accidentally committed typo.

===================================================================

M	source/blender/editors/sculpt_paint/paint_image_proj.cc

===================================================================

diff --git a/source/blender/editors/sculpt_paint/paint_image_proj.cc b/source/blender/editors/sculpt_paint/paint_image_proj.cc
index 45ffdcebc08..fb0191de298 100644
--- a/source/blender/editors/sculpt_paint/paint_image_proj.cc
+++ b/source/blender/editors/sculpt_paint/paint_image_proj.cc
@@ -4112,7 +4112,7 @@ static void proj_paint_layer_clone_init(ProjPaintState *ps, ProjPaintLayerClone
         MEM_mallocN(ps->totpoly_eval * sizeof(float(*)[2]), "proj_paint_mtfaces"));
 
     if (layer_num != -1) {
-      mloopuv_clone_base = static_cast < const float(*)[2](CustomData_get_layer_n(
+      mloopuv_clone_base = static_cast <const float(*)[2]>(CustomData_get_layer_n(
                                              &ps->me_eval->ldata, CD_PROP_FLOAT2, layer_num));
     }



More information about the Bf-blender-cvs mailing list