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:
Diffstat (limited to 'source/gameengine/SceneGraph/SG_Node.cpp')
-rw-r--r--source/gameengine/SceneGraph/SG_Node.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/gameengine/SceneGraph/SG_Node.cpp b/source/gameengine/SceneGraph/SG_Node.cpp
index c3e4ef79c28..821bc86af16 100644
--- a/source/gameengine/SceneGraph/SG_Node.cpp
+++ b/source/gameengine/SceneGraph/SG_Node.cpp
@@ -55,8 +55,8 @@ SG_Node::SG_Node(
const SG_Node & other
) :
SG_Spatial(other),
- m_SGparent(other.m_SGparent),
- m_children(other.m_children)
+ m_children(other.m_children),
+ m_SGparent(other.m_SGparent)
{
// nothing to do
}