fix build error on windows

This commit is contained in:
Andrew Meadows 2016-10-16 06:27:13 -07:00
parent 72ad974b3e
commit 515b8ef395

View file

@ -10,6 +10,10 @@
//
#include "CharacterGhostShape.h"
#include <assert.h>
CharacterGhostShape::CharacterGhostShape(const btConvexHullShape* shape) :
btConvexHullShape(reinterpret_cast<const btScalar*>(shape->getUnscaledPoints()), shape->getNumPoints(), sizeof(btVector3)) {
assert(shape);