Browse Source

Fixed ticket #33

Christophe Riccio 15 years ago
parent
commit
2e6cb304c3
1 changed files with 1 additions and 1 deletions
  1. 1 1
      glm/gtx/simd_vec4.inl

+ 1 - 1
glm/gtx/simd_vec4.inl

@@ -275,7 +275,7 @@ namespace glm
 			detail::fvec4SIMD const & x
 		)
 		{
-			detail::tvec4<float> Result;
+			GLM_ALIGN(16) detail::tvec4<float> Result;
 			_mm_store_ps(&Result[0], x.Data);
 			return Result;
 		}