Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHans Goudey <h.goudey@me.com>2022-04-22 18:03:36 +0300
committerHans Goudey <h.goudey@me.com>2022-04-22 18:03:36 +0300
commitfe43c170831fa8e76ded58505eb87e111e32e40d (patch)
tree604be4c6e51c7e8b95c06e8944a49ac875aa34d7 /source/blender/modifiers/intern/MOD_screw.c
parent024a4da6b347fc755a88a3d06ecf43c7fdf101ed (diff)
Fix: Assert failure with certain screw modifier settings
Caused by a typo/mistake in rB6a3c3c77b3ebdbcd4455.
Diffstat (limited to 'source/blender/modifiers/intern/MOD_screw.c')
-rw-r--r--source/blender/modifiers/intern/MOD_screw.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/modifiers/intern/MOD_screw.c b/source/blender/modifiers/intern/MOD_screw.c
index 8166c44539d..05072cf340c 100644
--- a/source/blender/modifiers/intern/MOD_screw.c
+++ b/source/blender/modifiers/intern/MOD_screw.c
@@ -1129,7 +1129,7 @@ static Mesh *modifyMesh(ModifierData *md, const ModifierEvalContext *ctx, Mesh *
}
if ((ltmd->flag & MOD_SCREW_NORMAL_CALC)) {
- BKE_mesh_vertex_normals_clear_dirty(mesh);
+ BKE_mesh_vertex_normals_clear_dirty(result);
}
return result;