Browse Source

Fixed bug in BulletManifoldPoint copy assignment operator.

enn0x 11 years ago
parent
commit
de4cfbb28b
1 changed files with 1 additions and 0 deletions
  1. 1 0
      panda/src/bullet/bulletManifoldPoint.cxx

+ 1 - 0
panda/src/bullet/bulletManifoldPoint.cxx

@@ -44,6 +44,7 @@ BulletManifoldPoint(const BulletManifoldPoint &other)
 BulletManifoldPoint& BulletManifoldPoint::
 BulletManifoldPoint& BulletManifoldPoint::
 operator=(const BulletManifoldPoint& other) {
 operator=(const BulletManifoldPoint& other) {
  
  
+  this->_pt = other._pt;
   return *this;
   return *this;
 }
 }