From 860a9f979d60086ab6da89ba699b9615ae321173 Mon Sep 17 00:00:00 2001 From: Alexander Gavrilov Date: Sun, 14 Apr 2019 22:18:00 +0300 Subject: Fix copy & paste mistake in assert. --- source/blender/blenkernel/intern/armature_update.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/blender/blenkernel/intern/armature_update.c b/source/blender/blenkernel/intern/armature_update.c index 892b2211bf9..6bf120b8f00 100644 --- a/source/blender/blenkernel/intern/armature_update.c +++ b/source/blender/blenkernel/intern/armature_update.c @@ -840,7 +840,7 @@ void BKE_pose_eval_proxy_init(struct Depsgraph *depsgraph, Object *object) BLI_assert(ID_IS_LINKED(object) && object->proxy_from != NULL); DEG_debug_print_eval(depsgraph, __func__, object->id.name, object); - BLI_assert(pose->chan_array != NULL || BLI_listbase_is_empty(&pose->chanbase)); + BLI_assert(object->pose->chan_array != NULL || BLI_listbase_is_empty(&object->pose->chanbase)); BKE_armature_cached_bbone_deformation_free_data(object); } -- cgit v1.2.3