Fixed bug in BulletManifoldPoint copy assignment operator.

This commit is contained in:
enn0x 2014-04-27 17:06:00 +00:00
parent 99a2b963d2
commit de4cfbb28b
1 changed files with 1 additions and 0 deletions

View File

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