From 85811f3860a5165fca755893b45b861a123cda5e Mon Sep 17 00:00:00 2001 From: Christophe Riccio Date: Thu, 4 Jan 2018 15:54:49 +0100 Subject: [PATCH] Fixed test --- test/core/core_type_mat4x4.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test/core/core_type_mat4x4.cpp b/test/core/core_type_mat4x4.cpp index 29e8536d..8cd83a58 100644 --- a/test/core/core_type_mat4x4.cpp +++ b/test/core/core_type_mat4x4.cpp @@ -227,7 +227,8 @@ int test_ctr() {0, 0, 1, 0}, {0, 0, 0, 1} }; - Error += glm::equal(m4[0][3], 1.0f, 0.0001f) ? 0 : 1; + Error += glm::equal(m4[0][0], 1.0f, 0.0001f) ? 0 : 1; + Error += glm::equal(m4[3][3], 1.0f, 0.0001f) ? 0 : 1; std::vector v1{ {0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15},