From b35d7c2cce21017ef258cae2b06c0a2542d3061e Mon Sep 17 00:00:00 2001 From: Mr-Wiseguy Date: Mon, 26 Feb 2024 10:15:15 -0500 Subject: [PATCH] Added missing change for new matrix group macros --- patches/terrain_transform_tagging.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/patches/terrain_transform_tagging.c b/patches/terrain_transform_tagging.c index 9cfa424..e705502 100644 --- a/patches/terrain_transform_tagging.c +++ b/patches/terrain_transform_tagging.c @@ -14,10 +14,10 @@ void Room_Draw(PlayState* play, Room* room, u32 flags) { // @recomp Tag the room's matrices if applicable. // Tag terrain as being ignored for interpolation, which prevents interpolation glitches where some pieces of terrain swap places when one comes into view. if (flags & ROOM_DRAW_OPA) { - gEXMatrixGroup(POLY_OPA_DISP++, G_EX_ID_IGNORE, G_EX_PUSH, G_MTX_MODELVIEW, G_EX_COMPONENT_SKIP, G_EX_COMPONENT_SKIP, G_EX_COMPONENT_SKIP, G_EX_COMPONENT_SKIP, G_EX_ORDER_LINEAR); + gEXMatrixGroupNoInterpolate(POLY_OPA_DISP++, G_EX_PUSH, G_MTX_MODELVIEW); } if (flags & ROOM_DRAW_XLU) { - gEXMatrixGroup(POLY_XLU_DISP++, G_EX_ID_IGNORE, G_EX_PUSH, G_MTX_MODELVIEW, G_EX_COMPONENT_SKIP, G_EX_COMPONENT_SKIP, G_EX_COMPONENT_SKIP, G_EX_COMPONENT_SKIP, G_EX_ORDER_LINEAR); + gEXMatrixGroupNoInterpolate(POLY_XLU_DISP++, G_EX_PUSH, G_MTX_MODELVIEW); } CLOSE_DISPS(play->state.gfxCtx);