From d332d5798945e839ccf379d4d2f03a558cb79ca0 Mon Sep 17 00:00:00 2001 From: Dethrace Labs <78985374+dethrace-labs@users.noreply.github.com> Date: Mon, 9 Feb 2026 11:09:41 +1300 Subject: [PATCH] GrooveThoseDelics effectively matching --- src/DETHRACE/common/world.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/DETHRACE/common/world.c b/src/DETHRACE/common/world.c index fe0ad5a0..77da049c 100644 --- a/src/DETHRACE/common/world.c +++ b/src/DETHRACE/common/world.c @@ -4321,12 +4321,11 @@ void GrooveThoseDelics(void) { float f_the_time; if (gGroovidelics_array != NULL) { - f_the_time = (double)GetTotalTime(); + f_the_time = (float)GetTotalTime(); gPrevious_groove_times[1] = gPrevious_groove_times[0]; gPrevious_groove_times[0] = f_the_time; - for (i = 0; i < gGroovidelics_array_size; i++) { - the_groove = &gGroovidelics_array[i]; + for (i = 0, the_groove = gGroovidelics_array; i < gGroovidelics_array_size; i++, the_groove++) { if (the_groove->owner != NO_OWNER && !the_groove->done_this_frame) { GrooveThisDelic(the_groove, f_the_time, 0); }