Browse Source

Fixed SIMD code path selection

Christophe Riccio 9 years ago
parent
commit
d0e746e292
1 changed files with 1 additions and 1 deletions
  1. 1 1
      glm/detail/type_vec4.hpp

+ 1 - 1
glm/detail/type_vec4.hpp

@@ -29,7 +29,7 @@ namespace detail
 		typedef T type[4];
 	};
 
-#	if (GLM_ARCH & GLM_ARCH_SSE2)
+#	if (GLM_ARCH & GLM_ARCH_SSE2_FLAG)
 		template <>
 		struct simd_data<float>
 		{