Browse Source

Fixed test

Christophe Riccio 8 years ago
parent
commit
5360662d77
1 changed files with 1 additions and 1 deletions
  1. 1 1
      test/gtc/gtc_type_ptr.cpp

+ 1 - 1
test/gtc/gtc_type_ptr.cpp

@@ -309,7 +309,7 @@ int test_make_vec4()
 	Error += v3 == glm::ivec4(2, 2, 2, 1) ? 0 : 1;
 
 	glm::ivec4 const v4 = glm::make_vec4(glm::ivec4(2));
-	Error += v3 == glm::ivec4(2, 2, 2, 4) ? 0 : 1;
+	Error += v4 == glm::ivec4(2, 2, 2, 2) ? 0 : 1;
 
 	return Error;
 }