summaryrefslogtreecommitdiff
path: root/soh/include
diff options
context:
space:
mode:
Diffstat (limited to 'soh/include')
-rw-r--r--soh/include/z64audio.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/soh/include/z64audio.h b/soh/include/z64audio.h
index 42328cd8e..6fed61399 100644
--- a/soh/include/z64audio.h
+++ b/soh/include/z64audio.h
@@ -915,7 +915,8 @@ typedef struct {
/* 0x2B30 */ AudioCache fontCache;
/* 0x2C40 */ AudioCache sampleBankCache;
/* 0x2D50 */ AudioAllocPool permanentPool;
- /* 0x2D60 */ AudioCacheEntry permanentCache[32];
+ // SOH [Bugfix] 32 -> 512: large custom-music packs overflowed this (see AudioHeap_AllocPermanent).
+ /* 0x2D60 */ AudioCacheEntry permanentCache[512];
/* 0x2EE0 */ AudioSampleCache persistentSampleCache;
/* 0x3174 */ AudioSampleCache temporarySampleCache;
/* 0x3408 */ AudioPoolSplit4 sessionPoolSplit;