summaryrefslogtreecommitdiff
path: root/src/os/guRotateF.c
diff options
context:
space:
mode:
authorMegaMech <7255464+MegaMech@users.noreply.github.com>2025-05-28 14:18:38 -0600
committerMegaMech <7255464+MegaMech@users.noreply.github.com>2025-05-28 14:18:38 -0600
commit5bf771b58331870a1cc00323a353ec452b4c9ced (patch)
treea697c9390648960ee88ce7b696c91b0ab333bf36 /src/os/guRotateF.c
parentc55781264336269a7086e4be33df2659d70ce061 (diff)
wip interp changeswipinterpchanges
Diffstat (limited to 'src/os/guRotateF.c')
-rw-r--r--src/os/guRotateF.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/os/guRotateF.c b/src/os/guRotateF.c
index 0bdfad841..a731c94ad 100644
--- a/src/os/guRotateF.c
+++ b/src/os/guRotateF.c
@@ -39,7 +39,7 @@ void guRotateF(float m[4][4], float a, float x, float y, float z) {
void guRotate(Mtx* m, float a, float x, float y, float z) {
float mf[4][4];
guRotateF(mf, a, x, y, z);
- FrameInterpolation_Record_guRotate(mf, a, x, y, z);
+ //FrameInterpolation_Record_guRotate(mf, a, x, y, z);
FrameInterpolation_RecordMatrixMtxFToMtx(mf, m);
guMtxF2L(mf, m);
}