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:
authorCampbell Barton <ideasman42@gmail.com>2020-11-09 12:36:34 +0300
committerCampbell Barton <ideasman42@gmail.com>2020-11-09 12:36:34 +0300
commit3c04a0617807ec04e71e068f638f43b516e70cf5 (patch)
treea91d9951f06d994f880a6e65de696039aaea9324
parentba179e3dd5ae55eb71f5491c7f41b437e191e12b (diff)
parent067e200564243a63de3cfd7ba977a625c3267e62 (diff)
Merge branch 'blender-v2.91-release'
-rw-r--r--source/blender/modifiers/intern/MOD_cast.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/modifiers/intern/MOD_cast.c b/source/blender/modifiers/intern/MOD_cast.c
index 0a311bc8e5f..185c21af7ad 100644
--- a/source/blender/modifiers/intern/MOD_cast.c
+++ b/source/blender/modifiers/intern/MOD_cast.c
@@ -512,7 +512,7 @@ static void deformVertsEM(ModifierData *md,
}
if (mesh && mesh->runtime.wrapper_type == ME_WRAPPER_TYPE_MDATA) {
- BLI_assert(mesh_src->totvert == numVerts);
+ BLI_assert(mesh->totvert == numVerts);
}
/* TODO(Campbell): use edit-mode data only (remove this line). */