mirror of
https://github.com/zeldaret/mm.git
synced 2026-09-02 17:53:02 -04:00
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:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user