From 1fe0743256bf2f0636b6e72f428846085e4f568d Mon Sep 17 00:00:00 2001 From: Anthony Super Date: Tue, 12 Apr 2016 14:01:10 -0600 Subject: [PATCH] libobs: Remove duplicated determinant calculation --- libobs/graphics/matrix4.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libobs/graphics/matrix4.c b/libobs/graphics/matrix4.c index 3acc3eaa7..12d1ebd8c 100644 --- a/libobs/graphics/matrix4.c +++ b/libobs/graphics/matrix4.c @@ -232,7 +232,7 @@ void matrix4_scale_i(struct matrix4 *dst, const struct vec3 *v, bool matrix4_inv(struct matrix4 *dst, const struct matrix4 *m) { struct vec4 *dstv = (struct vec4 *)dst; - float det = matrix4_determinant(m); + float det; float m3x3[9]; int i, j, sign; -- GitLab