summaryrefslogtreecommitdiff
path: root/src/sys
diff options
context:
space:
mode:
authorSonic Dreamcaster <alejandro.asenjo88@gmail.com>2025-02-18 20:12:11 -0300
committerSonic Dreamcaster <alejandro.asenjo88@gmail.com>2025-02-18 20:12:11 -0300
commitc76d6277a8a631740119f3bb219bba61f4e1ea98 (patch)
treec0755e840746d6f48ecf41f7a0f51d3f1d744274 /src/sys
parent608d078346df7a5ac12cc138797bc1e7d1b58fb8 (diff)
Float precision rendering
Diffstat (limited to 'src/sys')
-rw-r--r--src/sys/sys_matrix.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sys/sys_matrix.c b/src/sys/sys_matrix.c
index 6be1ea62..52c39180 100644
--- a/src/sys/sys_matrix.c
+++ b/src/sys/sys_matrix.c
@@ -493,7 +493,7 @@ void Matrix_ToMtx(Mtx* dest) {
// Converts the Mtx src to a Matrix, putting the result in dest
void Matrix_FromMtx(Mtx* src, Matrix* dest) {
FrameInterpolation_RecordMatrixMtxFToMtx(src, dest);
- guMtxF2L(src->m, dest->m);
+ guMtxF2L(src->mf, dest->m);
}
// Applies the transform matrix mtx to the vector src, putting the result in dest