From ad434b9d51f95d537fd4118dff24d7dd37ec44d8 Mon Sep 17 00:00:00 2001 From: Dethrace Labs <78985374+dethrace-labs@users.noreply.github.com> Date: Mon, 9 Feb 2026 12:40:37 +1300 Subject: [PATCH] ResetGrooveFlags effectively matching --- src/DETHRACE/common/world.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/DETHRACE/common/world.c b/src/DETHRACE/common/world.c index 8db155dd..196cbb35 100644 --- a/src/DETHRACE/common/world.c +++ b/src/DETHRACE/common/world.c @@ -4368,10 +4368,8 @@ void ResetGrooveFlags(void) { int i; tGroovidelic_spec* the_groove; - the_groove = gGroovidelics_array; - for (i = 0; i < gGroovidelics_array_size; i++) { + for (i = 0, the_groove = gGroovidelics_array; i < gGroovidelics_array_size; i++, the_groove++) { the_groove->done_this_frame = 0; - the_groove++; } }