From cfe9b339b401eaf5c049981bbfc50ac13ce1def9 Mon Sep 17 00:00:00 2001 From: Dan Goodliffe Date: Sat, 9 Mar 2024 12:08:24 +0000 Subject: Fix non-64bit upgrade wrapper for crossProduct --- lib/maths.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib') diff --git a/lib/maths.h b/lib/maths.h index 5886326..adf2158 100644 --- a/lib/maths.h +++ b/lib/maths.h @@ -111,7 +111,7 @@ template inline constexpr glm::vec<3, T, Q> crossProduct(const glm::vec<3, T, Q> a, const glm::vec<3, T, Q> b) { - return crossProduct(a, b); + return crossProduct(a, b); } template -- cgit v1.2.3