From df7f6cc03c5c2fe976c276097884549bd0c65622 Mon Sep 17 00:00:00 2001 From: CaptainCarrot Date: Sat, 22 Jul 2017 17:20:45 +0200 Subject: [PATCH] Update gtx_quaternion.cpp --- test/gtx/gtx_quaternion.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/gtx/gtx_quaternion.cpp b/test/gtx/gtx_quaternion.cpp index 2ab6d21b..e27981c4 100644 --- a/test/gtx/gtx_quaternion.cpp +++ b/test/gtx/gtx_quaternion.cpp @@ -90,7 +90,7 @@ int test_log() return Error; } -int test_quatLookAt() +int test_quat_lookAt() { int Error(0); @@ -115,7 +115,7 @@ int main() Error += test_rotation(); Error += test_quat_fastMix(); Error += test_quat_shortMix(); - Error += test_quatLookAt(); + Error += test_quat_lookAt(); return Error; }