minor type in simdvector3, no picking on fixed objects, no run-time type info
This commit is contained in:
@@ -183,7 +183,7 @@ operator+(const SimdVector3& v1, const SimdVector3& v2)
|
||||
SIMD_FORCE_INLINE SimdVector3
|
||||
operator*(const SimdVector3& v1, const SimdVector3& v2)
|
||||
{
|
||||
return SimdVector3(v1.x() * v2.x(), v1.y() * v2.y(), v1.z() *+ v2.z());
|
||||
return SimdVector3(v1.x() * v2.x(), v1.y() * v2.y(), v1.z() * v2.z());
|
||||
}
|
||||
|
||||
SIMD_FORCE_INLINE SimdVector3
|
||||
|
||||
Reference in New Issue
Block a user