Another fix I forgot about prior

This commit is contained in:
Colton Rushton 2021-02-13 10:46:31 -04:00
parent 3ffcef70d4
commit ce9d9e98fa
1 changed files with 4 additions and 0 deletions

View File

@ -789,7 +789,11 @@ void preload_sequence(u32 seqId, u8 preloadMask) {
if (preloadMask & PRELOAD_SEQUENCE) {
// @bug should be IS_SEQ_LOAD_COMPLETE
#ifndef QOL_FIXES
if (IS_BANK_LOAD_COMPLETE(seqId) == TRUE) {
#else
if (IS_SEQ_LOAD_COMPLETE(seqId) == TRUE) {
#endif
sequenceData = get_bank_or_seq(&gSeqLoadedPool, 2, seqId);
} else {
sequenceData = NULL;