aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Chris Genova 2017-09-07 19:46:53 -0700
committerGravatar Chris Genova 2017-09-07 19:46:53 -0700
commit1bc8bf20f39a268a1ab3f6ffa00b816804d1d67f (patch)
tree59aa3602924bad77b4affd5444edd216bddbf5e1
parentFixing gb_mat4_look_at (diff)
Removing unreferenced variable
-rw-r--r--gb_math.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/gb_math.h b/gb_math.h
index ffd8d84..ad6f99e 100644
--- a/gb_math.h
+++ b/gb_math.h
@@ -1526,7 +1526,6 @@ void gb_mat4_inverse(gbMat4 *out, gbMat4 *in) {
gbFloat4 *m = gb_float44_m(in);
float ood;
- float tmp;
float sf00 = m[2][2] * m[3][3] - m[3][2] * m[2][3];
float sf01 = m[2][1] * m[3][3] - m[3][1] * m[2][3];