Fixed bug in BulletManifoldPoint copy assignment operator.
This commit is contained in:
parent
99a2b963d2
commit
de4cfbb28b
|
|
@ -44,6 +44,7 @@ BulletManifoldPoint(const BulletManifoldPoint &other)
|
|||
BulletManifoldPoint& BulletManifoldPoint::
|
||||
operator=(const BulletManifoldPoint& other) {
|
||||
|
||||
this->_pt = other._pt;
|
||||
return *this;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue