Update soh/src/code/audio_load.c

This commit is contained in:
Kenix3 2022-06-20 16:03:03 -04:00 committed by GitHub
parent 43503ead83
commit a7ed748973
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -1445,7 +1445,7 @@ void AudioLoad_Init(void* heap, size_t heapSize) {
int seqListSize = 0;
char** seqList = ResourceMgr_ListFiles("audio/sequences*", &seqListSize);
for (int i = 0; i < seqListSize; i++)
for (size_t i = 0; i < seqListSize; i++)
{
SequenceData sDat = ResourceMgr_LoadSeqByName(seqList[i]);