diff --git a/glm/gtx/matrix_factorisation.inl b/glm/gtx/matrix_factorisation.inl index 32215b47..f0d9560c 100644 --- a/glm/gtx/matrix_factorisation.inl +++ b/glm/gtx/matrix_factorisation.inl @@ -6,7 +6,7 @@ namespace glm template GLM_FUNC_QUALIFIER mat flipud(mat const& in) { - mat tin = transpose(in); + mat tin = transpose(in); tin = fliplr(tin); mat out = transpose(tin);