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:
authorMitchell Stokes <mogurijin@gmail.com>2011-07-30 01:58:31 +0400
committerMitchell Stokes <mogurijin@gmail.com>2011-07-30 01:58:31 +0400
commit387439390d2651c6eaea9deb3ad38a250b579e7b (patch)
tree20df7c1b89208c56a3ad4975d698cb8cd562e09f /source/gameengine/Ketsji/BL_Action.cpp
parent29f214f7f31bf7490b0c2795ad716ce5a9dc1818 (diff)
BGE Animations: Fixing some warnings from GCC about initialization order.
Diffstat (limited to 'source/gameengine/Ketsji/BL_Action.cpp')
-rw-r--r--source/gameengine/Ketsji/BL_Action.cpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/source/gameengine/Ketsji/BL_Action.cpp b/source/gameengine/Ketsji/BL_Action.cpp
index 6fe989296fd..caffd3cd8ca 100644
--- a/source/gameengine/Ketsji/BL_Action.cpp
+++ b/source/gameengine/Ketsji/BL_Action.cpp
@@ -49,24 +49,24 @@ extern "C" {
BL_Action::BL_Action(class KX_GameObject* gameobj)
:
+ m_action(NULL),
+ m_pose(NULL),
+ m_blendpose(NULL),
+ m_blendinpose(NULL),
+ m_ptrrna(NULL),
+ m_sg_contr(NULL),
m_obj(gameobj),
m_startframe(0.f),
m_endframe(0.f),
- m_blendin(0.f),
- m_playmode(0),
m_endtime(0.f),
m_localtime(0.f),
+ m_blendin(0.f),
m_blendframe(0.f),
m_blendstart(0.f),
m_speed(0.f),
m_priority(0),
+ m_playmode(0),
m_ipo_flags(0),
- m_pose(NULL),
- m_blendpose(NULL),
- m_blendinpose(NULL),
- m_sg_contr(NULL),
- m_ptrrna(NULL),
- m_action(NULL),
m_done(true)
{
if (m_obj->GetGameObjectType() == SCA_IObject::OBJ_ARMATURE)