Applied a patch from Michael D. Adams to fix a warning with gcc.

This commit is contained in:
res2002
2006-06-17 18:36:38 +00:00
parent ce4aabb3fe
commit 21ec6305f7
2 changed files with 4 additions and 3 deletions

View File

@@ -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)
{
}

View File

@@ -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