Ver Fonte

daeegg: Fix a compiler warning

rdb há 3 anos atrás
pai
commit
e113503538
1 ficheiros alterados com 2 adições e 2 exclusões
  1. 2 2
      pandatool/src/daeegg/daeCharacter.h

+ 2 - 2
pandatool/src/daeegg/daeCharacter.h

@@ -38,10 +38,10 @@ public:
 
   struct Joint {
     INLINE Joint(EggGroup *group, const FCDSceneNode *scene_node) :
+      _bind_pose(LMatrix4d::ident_mat()),
       _group(group),
       _scene_node(scene_node),
-      _character(nullptr),
-      _bind_pose(LMatrix4d::ident_mat()) {}
+      _character(nullptr) {}
 
     LMatrix4d _bind_pose;
     PT(EggGroup) _group;