Browse Source

Fixed merge

Christophe Riccio 12 years ago
parent
commit
ba1ccbaba2
1 changed files with 1 additions and 1 deletions
  1. 1 1
      glm/gtx/rotate_vector.inl

+ 1 - 1
glm/gtx/rotate_vector.inl

@@ -204,7 +204,7 @@ namespace glm
 		if(all(equal(Normal, Up)))
 			return detail::tmat4x4<T, P>(T(1));
 
-		detail::tvec3<T> RotationAxis = cross(Up, Normal);
+		detail::tvec3<T, P> RotationAxis = cross(Up, Normal);
 #		ifdef GLM_FORCE_RADIANS
 			T Angle = acos(dot(Normal, Up));
 #		else