ResetGrooveFlags effectively matching

This commit is contained in:
Dethrace Labs 2026-02-09 12:40:37 +13:00
parent ed5480ff4d
commit ad434b9d51
1 changed files with 1 additions and 3 deletions

View File

@ -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++;
}
}