diff options
| -rw-r--r-- | src/port/interpolation/FrameInterpolation.cpp | 2 | ||||
| -rw-r--r-- | src/racing/math_util.c | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/src/port/interpolation/FrameInterpolation.cpp b/src/port/interpolation/FrameInterpolation.cpp index a674c1ff2..4a6725cbe 100644 --- a/src/port/interpolation/FrameInterpolation.cpp +++ b/src/port/interpolation/FrameInterpolation.cpp @@ -530,7 +530,7 @@ void FrameInterpolation_RecordMarker(const char* file, int line) { if (!is_recording) return; - // append(Op::Marker).marker = { file, line }; + append(Op::Marker).marker = { file, line }; } void FrameInterpolation_RecordMatrixPop(Mat4* matrix) { diff --git a/src/racing/math_util.c b/src/racing/math_util.c index 457975ebb..1fb975048 100644 --- a/src/racing/math_util.c +++ b/src/racing/math_util.c @@ -333,6 +333,7 @@ void func_802B5794(Mat4 mtx, Vec3f from, Vec3f to) { // create a rotation matrix around the x axis void mtxf_rotate_x(Mat4 mat, s16 angle) { + FrameInterpolation_RecordMatrixRotate1Coord(&mat, 0, angle); f32 sin_theta = sins(angle); f32 cos_theta = coss(angle); |
