From 9cb954a2b025d2b3de0c7c74ae19077a1c80779f Mon Sep 17 00:00:00 2001 From: sitton76 <58642183+sitton76@users.noreply.github.com> Date: Sat, 17 May 2025 01:51:20 -0500 Subject: [PATCH] Removed unneeded code from falling_rock --- src/actors/falling_rock/render.inc.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/actors/falling_rock/render.inc.c b/src/actors/falling_rock/render.inc.c index 54f85bf06..cc6f0592b 100644 --- a/src/actors/falling_rock/render.inc.c +++ b/src/actors/falling_rock/render.inc.c @@ -45,14 +45,12 @@ void render_actor_falling_rock(Camera* camera, struct FallingRock* rock) { sp98[1] = 0; sp98[2] = 0; sp8C[1] = height + 2.0f; - FrameInterpolation_RecordMatrixPush(mtx); mtxf_pos_rotation_xyz(mtx, sp8C, sp98); if (render_set_position(mtx, 0) == 0) { return; } gSPDisplayList(gDisplayListHead++, d_course_choco_mountain_dl_6F88); - FrameInterpolation_RecordMatrixPop(mtx); } }