diff options
| author | David Racine <bass_dr@hotmail.com> | 2026-06-18 09:29:45 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-06-18 13:29:45 +0000 |
| commit | ebdd2c34c7abccba8686a6e06741d60911cb2558 (patch) | |
| tree | 4983f91354d6ba3873300d29c8f9006570d0ed96 /soh/src/code | |
| parent | 37ac3d51d303c4728f8beb0406be364396a5e58c (diff) | |
fix(audio): replace stray custom-sequence printf with a debug log (#6752)
The custom-sequence registration loop printed each assigned seqNum to
stdout via a bare printf, spamming the console with context-free numbers
on every launch. Convert it to LUSLOG_DEBUG and include the sequence name
so it is hidden by default yet useful for diagnosing music-pack loading.
Diffstat (limited to 'soh/src/code')
| -rw-r--r-- | soh/src/code/audio_load.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/soh/src/code/audio_load.c b/soh/src/code/audio_load.c index 3f4ab2096..760ecc61d 100644 --- a/soh/src/code/audio_load.c +++ b/soh/src/code/audio_load.c @@ -1443,7 +1443,7 @@ void AudioLoad_Init(void* heap, size_t heapSize) { AudioCollection_AddToCollection(customSeqList[j], seqNum); sDat->seqNumber = seqNum; - printf("%d\n", seqNum); + LUSLOG_DEBUG("Registered custom sequence \"%s\" as seqNum %d", customSeqList[j], seqNum); sequenceMap[sDat->seqNumber] = strdup(customSeqList[j]); seqNum++; } |
