summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorTharo <17233964+Thar0@users.noreply.github.com>2025-01-12 16:30:17 +0000
committerGitHub <noreply@github.com>2025-01-12 08:30:17 -0800
commite8e73fe771069f310208c2c00924ccebbcaa3c42 (patch)
treecdc3e7d6db87f6d7db50db61b8c78cea3ff34539 /tools
parent385c45ad483502a03c6f93b81e5b1ed5e08281d0 (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')
-rw-r--r--tools/audio/soundfont_compiler.c2
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);