summaryrefslogtreecommitdiff
path: root/src/m4f.h
diff options
context:
space:
mode:
authorVito Caputo <vcaputo@pengaru.com>2022-10-10 19:32:55 -0700
committerVito Caputo <vcaputo@pengaru.com>2022-10-10 19:33:40 -0700
commit26f569299d6769cff6edf024c68df83732715392 (patch)
tree673bdb91a4a5d620495887547431b084d95518f2 /src/m4f.h
parenta11aea516471278baffbc8d7714eedae116d6d65 (diff)
m4f: fix typo in m4f_invert()
I feel like I've re-fixed this a dozen times now in various projects because I haven't been submoduling m4f*.h
Diffstat (limited to 'src/m4f.h')
-rw-r--r--src/m4f.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/m4f.h b/src/m4f.h
index 7c121f3..232e89a 100644
--- a/src/m4f.h
+++ b/src/m4f.h
@@ -129,7 +129,7 @@ static inline m4f_t m4f_invert(const m4f_t *m)
m->m[3][0] * m->m[1][3] * m->m[2][2];
inv.m[2][0] = m->m[1][0] * m->m[2][1] * m->m[3][3] -
- m->m[1][0] * m->m[8][3] * m->m[3][1] -
+ m->m[1][0] * m->m[2][3] * m->m[3][1] -
m->m[2][0] * m->m[1][1] * m->m[3][3] +
m->m[2][0] * m->m[1][3] * m->m[3][1] +
m->m[3][0] * m->m[1][1] * m->m[2][3] -
© All Rights Reserved