From 897ebc2f610462b1a6b5f50eeac81fc71fac5f31 Mon Sep 17 00:00:00 2001 From: Dethrace Labs <78985374+dethrace-labs@users.noreply.github.com> Date: Mon, 9 Feb 2026 11:07:29 +1300 Subject: [PATCH] GrooveThisDelic effectively matching --- src/DETHRACE/common/world.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/DETHRACE/common/world.c b/src/DETHRACE/common/world.c index c4d6c305..fe0ad5a0 100644 --- a/src/DETHRACE/common/world.c +++ b/src/DETHRACE/common/world.c @@ -4295,9 +4295,9 @@ void GrooveThisDelic(tGroovidelic_spec* pGroove, tU32 pTime, int pInterrupt_it) the_mat->m[3][1] = -pGroove->object_centre.v[1]; the_mat->m[3][2] = -pGroove->object_centre.v[2]; ObjectGrooveBastard(pGroove, pTime, the_mat, pInterrupt_it); - the_actor->t.t.mat.m[3][0] += pGroove->object_position.v[0] + pGroove->object_centre.v[0]; - the_actor->t.t.mat.m[3][1] += pGroove->object_position.v[1] + pGroove->object_centre.v[1]; - the_actor->t.t.mat.m[3][2] += pGroove->object_position.v[2] + pGroove->object_centre.v[2]; + the_mat->m[3][0] += pGroove->object_position.v[0] + pGroove->object_centre.v[0]; + the_mat->m[3][1] += pGroove->object_position.v[1] + pGroove->object_centre.v[1]; + the_mat->m[3][2] += pGroove->object_position.v[2] + pGroove->object_centre.v[2]; if (pGroove->lollipop_mode != eLollipop_none) { LollipopizeActor(pGroove->actor, &gCamera_to_world, pGroove->lollipop_mode); }