Depsgraph: Fix for uninitialized variable in root depsnode

This commit is contained in:
Sergey Sharybin 2015-05-26 11:34:18 +05:00
parent abf7378e44
commit e4dc44d7ab
1 changed files with 1 additions and 1 deletions

View File

@ -118,7 +118,7 @@ void TimeSourceDepsNode::tag_update(Depsgraph *graph)
/* Root Node ============================================== */
RootDepsNode::RootDepsNode() : time_source(NULL)
RootDepsNode::RootDepsNode() : time_source(NULL), scene(NULL)
{
}