From 895062a09de83ddb2a10b6de1207918c6ab6e270 Mon Sep 17 00:00:00 2001 From: Sergeanur Date: Sat, 11 Jan 2020 13:30:17 +0200 Subject: ProjectileInfo --- src/math/Vector.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/math/Vector.h') diff --git a/src/math/Vector.h b/src/math/Vector.h index 605d96ab..cd436123 100644 --- a/src/math/Vector.h +++ b/src/math/Vector.h @@ -109,7 +109,7 @@ DotProduct(const CVector &v1, const CVector &v2) return v1.x*v2.x + v1.y*v2.y + v1.z*v2.z; } -inline CVector +inline const CVector CrossProduct(const CVector &v1, const CVector &v2) { return CVector( -- cgit v1.2.3