Animation Cleanup: En_T* (#1522)

* anim T cleanup

* more cleanup

* brackets and floats

* small thing

* more floats

* fix name

* fix

* format

---------

Co-authored-by: angie <angheloalf95@gmail.com>
This commit is contained in:
engineer124
2024-06-25 10:54:14 +10:00
committed by GitHub
parent bb221b4a0f
commit 0bb57352a5
96 changed files with 811 additions and 627 deletions
+5 -2
View File
@@ -719,11 +719,14 @@ void AudioList_ClearNotePool(NotePool* pool) {
source = &pool->active;
dest = &gAudioCtx.noteFreeLists.active;
break;
default:
break;
}
for (;;) {
while (true) {
cur = source->next;
if (cur == source || cur == NULL) {
if ((cur == source) || (cur == NULL)) {
break;
}
AudioList_Remove(cur);