From b4e49055d5f3b52b07635d4e293ee2eeee3c9793 Mon Sep 17 00:00:00 2001 From: CaptainCarrot Date: Tue, 21 Nov 2017 20:10:54 +0100 Subject: [PATCH] Update quaternion.inl --- glm/gtx/quaternion.inl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/glm/gtx/quaternion.inl b/glm/gtx/quaternion.inl index 92b4a388..bb1a9794 100644 --- a/glm/gtx/quaternion.inl +++ b/glm/gtx/quaternion.inl @@ -246,7 +246,7 @@ namespace glm result[0] = normalize(cross(up, direction)); result[1] = cross(direction, result[0]); - result[2] = direction; + result[2] = direction; return quat_cast(result); }