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>2011-02-01 03:41:15 +0300
committerCampbell Barton <ideasman42@gmail.com>2011-02-01 03:41:15 +0300
commit6fcc13a78694176ee76b0c811129c3b7fa4fd7f0 (patch)
tree8bc92e8e695afb54dc4c56de9914211656e5436d /source/blender/blenkernel/intern/depsgraph.c
parent11d61383fa446b53794c9800ba24f4ecc8a8bcfd (diff)
disable assert [#25877] Driven shapekeys: incorrect assertions in depsgraph.c
Diffstat (limited to 'source/blender/blenkernel/intern/depsgraph.c')
-rw-r--r--source/blender/blenkernel/intern/depsgraph.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/source/blender/blenkernel/intern/depsgraph.c b/source/blender/blenkernel/intern/depsgraph.c
index 71c3e76c207..cedf4e93247 100644
--- a/source/blender/blenkernel/intern/depsgraph.c
+++ b/source/blender/blenkernel/intern/depsgraph.c
@@ -2452,7 +2452,9 @@ void DAG_id_tag_update(ID *id, short flag)
}
}
else {
- BLI_assert(!"invalid flag for this 'idtype'");
+ /* disable because this is called on various ID types automatically.
+ * where printing warning is not useful. for now just ignore */
+ /* BLI_assert(!"invalid flag for this 'idtype'"); */
}
}
}