From b09f08f55282014b6f289e8918dac7b5a4d5a13e Mon Sep 17 00:00:00 2001 From: Dario Date: Sat, 20 Dec 2025 16:11:33 -0300 Subject: [PATCH] Fix logical error in model matrix group function. --- patches/transform_tagging.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/patches/transform_tagging.c b/patches/transform_tagging.c index 26db6ab..253bc5b 100644 --- a/patches/transform_tagging.c +++ b/patches/transform_tagging.c @@ -117,6 +117,9 @@ bool set_model_matrix_group(Gfx **gfx, void *geo_list, u32 bone_index) { } else if (skip_all_interpolation) { gEXMatrixGroupNoInterpolate((*gfx)++, G_EX_PUSH, G_MTX_MODELVIEW, G_EX_EDIT_NONE); + return TRUE; + } + else { return FALSE; } }