diff options
| author | Tharo <17233964+Thar0@users.noreply.github.com> | 2025-01-12 16:30:17 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-01-12 08:30:17 -0800 |
| commit | e8e73fe771069f310208c2c00924ccebbcaa3c42 (patch) | |
| tree | cdc3e7d6db87f6d7db50db61b8c78cea3ff34539 /tools/audio/soundfont_compiler.c | |
| parent | 385c45ad483502a03c6f93b81e5b1ed5e08281d0 (diff) | |
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
Diffstat (limited to 'tools/audio/soundfont_compiler.c')
| -rw-r--r-- | tools/audio/soundfont_compiler.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/audio/soundfont_compiler.c b/tools/audio/soundfont_compiler.c index 3dbf18eaa..4f9a5779c 100644 --- a/tools/audio/soundfont_compiler.c +++ b/tools/audio/soundfont_compiler.c @@ -1076,7 +1076,7 @@ emit_c_samples(FILE *out, soundfont *sf) "NO_REORDER SECTION_DATA ALIGNED(16) AdpcmBookHeader SF%d_%s_BOOK_HEADER = {" "\n" " %d, %d," "\n" "};" "\n" - "NO_REORDER SECTION_DATA AdpcmBookData SF%d_%s_BOOK_DATA = {" "\n", + "NO_REORDER SECTION_DATA s16 SF%d_%s_BOOK_DATA[] = {" "\n", // clang-format on sf->info.index, bookname, sample->aifc.book.order, sample->aifc.book.npredictors, sf->info.index, bookname); |
