fix Windows compile error, SIMD data needs to be passed by reference

This commit is contained in:
Erwin Coumans
2014-07-30 09:48:18 -07:00
parent e1abb8ba89
commit 97fc144134

View File

@@ -7,7 +7,7 @@
struct MyDebugVec3
{
MyDebugVec3(const btVector3 org)
MyDebugVec3(const btVector3& org)
:x(org.x()),
y(org.y()),
z(org.z())