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>2014-05-09 12:29:21 +0400
committerCampbell Barton <ideasman42@gmail.com>2014-05-09 12:29:42 +0400
commit164841e30eddcfbb874a7dbcef72ba851074b5ee (patch)
tree68214f9898fe26ac597c9849413e83ea37862915 /source/blender/blenkernel/intern/depsgraph.c
parent663c800ef3198e6a2f7857e0dd2794690e977eda (diff)
Code cleanup: style
Diffstat (limited to 'source/blender/blenkernel/intern/depsgraph.c')
-rw-r--r--source/blender/blenkernel/intern/depsgraph.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/source/blender/blenkernel/intern/depsgraph.c b/source/blender/blenkernel/intern/depsgraph.c
index 6533cd4aabe..21579098266 100644
--- a/source/blender/blenkernel/intern/depsgraph.c
+++ b/source/blender/blenkernel/intern/depsgraph.c
@@ -2589,8 +2589,7 @@ void DAG_ids_check_recalc(Main *bmain, Scene *scene, bool time)
/* we tag based on first ID type character to avoid
* looping over all ID's in case there are no tags */
- if (id && bmain->id_tag_update[id->name[0]])
- {
+ if (id && bmain->id_tag_update[id->name[0]]) {
updated = true;
break;
}