Fix logical error in model matrix group function.

This commit is contained in:
Dario
2025-12-20 16:11:33 -03:00
parent 5bc7880347
commit b09f08f552
+3
View File
@@ -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;
}
}