Sync soundfont_compiler.c with recent OoT change, give automatic names to sequence 0 channels that implement sfx (#1784)

* Sync soundfont_compiler.c with recent OoT change, give automatic names to sequence 0 channels that implement sfx

* Fix bss
This commit is contained in:
Tharo
2025-01-12 16:30:17 +00:00
committed by GitHub
parent 385c45ad48
commit e8e73fe771
11 changed files with 3998 additions and 4001 deletions
+1 -3
View File
@@ -28,11 +28,9 @@ typedef struct AdpcmBookHeader {
* The procedure used to design the codeBook is based on an adaptive clustering algorithm.
* The size of the codeBook is (8 * order * numPredictors) and is 8-byte aligned
*/
typedef s16 AdpcmBookData[];
typedef struct AdpcmBook {
/* 0x0 */ AdpcmBookHeader header;
/* 0x8 */ AdpcmBookData codeBook;
/* 0x8 */ s16 codeBook[1];
} AdpcmBook; // size >= 0x8
typedef enum SampleCodec {