diff --git a/Extras/PhysicsInterface/CcdPhysics/CcdPhysicsController.h b/Extras/PhysicsInterface/CcdPhysics/CcdPhysicsController.h index f82a4479f..856e08a51 100644 --- a/Extras/PhysicsInterface/CcdPhysics/CcdPhysicsController.h +++ b/Extras/PhysicsInterface/CcdPhysics/CcdPhysicsController.h @@ -43,16 +43,16 @@ struct CcdConstructionInfo { CcdConstructionInfo() : m_gravity(0,0,0), + m_scaling(1.f,1.f,1.f), m_mass(0.f), m_restitution(0.1f), m_friction(0.5f), m_linearDamping(0.1f), m_angularDamping(0.1f), + m_collisionFlags(0), m_MotionState(0), m_physicsEnv(0), - m_inertiaFactor(1.f), - m_scaling(1.f,1.f,1.f), - m_collisionFlags(0) + m_inertiaFactor(1.f) { } diff --git a/changes.txt b/changes.txt index 70787b435..1b63e5b2b 100644 --- a/changes.txt +++ b/changes.txt @@ -8,6 +8,7 @@ Erwin Coumans GLU detection issue on MinGW. Set msvc/bullet_ico.ico as the default application icon. Disabled exceptions for gcc builds. + Applied a patch from Michael D. Adams to fix a warning with gcc. 2006 May 24 Improved GJK accuracy, fixed GjkConvexCast issue, thanks to ~MyXa~ for reporting