Update playback.c

This commit is contained in:
KingOfSpadesJFK 2023-10-17 11:36:24 -07:00
parent 2e06e25407
commit 9b07b766be
1 changed files with 1 additions and 1 deletions

View File

@ -970,7 +970,7 @@ void reclaim_notes(void) {
for (i = 0; i < gMaxSimultaneousNotes; i++) {
note = &gNotes[i];
if (note->parentLayer != NO_LAYER) {
if (note->parentLayer && note->parentLayer != NO_LAYER) {
cond = FALSE;
if (!note->parentLayer->enabled && note->priority >= NOTE_PRIORITY_MIN) {
cond = TRUE;