From de4cfbb28b2d75c3751aa937692718627d2b11f9 Mon Sep 17 00:00:00 2001 From: enn0x Date: Sun, 27 Apr 2014 17:06:00 +0000 Subject: [PATCH] Fixed bug in BulletManifoldPoint copy assignment operator. --- panda/src/bullet/bulletManifoldPoint.cxx | 1 + 1 file changed, 1 insertion(+) diff --git a/panda/src/bullet/bulletManifoldPoint.cxx b/panda/src/bullet/bulletManifoldPoint.cxx index 509a36b9cc..918240e43e 100644 --- a/panda/src/bullet/bulletManifoldPoint.cxx +++ b/panda/src/bullet/bulletManifoldPoint.cxx @@ -44,6 +44,7 @@ BulletManifoldPoint(const BulletManifoldPoint &other) BulletManifoldPoint& BulletManifoldPoint:: operator=(const BulletManifoldPoint& other) { + this->_pt = other._pt; return *this; }