diff options
| author | Tyler McGavran <tyler.taggerung@gmail.com> | 2022-11-06 10:24:24 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-11-06 08:24:24 -0700 |
| commit | e9415164bb5786f0f5052f92d59843d6549b79e4 (patch) | |
| tree | 2ca31c2211890441d74afdd19ef7a2d6eb5d7ca3 /src/audio/data.c | |
| parent | 4e5946257d8049f421c4247d6039de94d3db83d5 (diff) | |
Lots and lots of audio code copied from SM64 (#270)
* Lots of audio decomp
* effects and playback are 100% matched
* Took some notes from the SM64 Makefile to get the right compiler
options for a couple files
* Added the audio files to rename_symbol utility
Signed-off-by: Taggerung <tyler.taggerung@gmail.com>
Diffstat (limited to 'src/audio/data.c')
| -rw-r--r-- | src/audio/data.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/audio/data.c b/src/audio/data.c index c0e12c35f..25f05a007 100644 --- a/src/audio/data.c +++ b/src/audio/data.c @@ -346,8 +346,8 @@ struct AdsrEnvelope gDefaultEnvelope[] = { // TODO 0x00000000800f624c fill2 u32 fill2 = 0x00000000; -struct NoteSub gZeroNoteSub = { 0 }; -struct NoteSub gDefaultNoteSub = { 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, { NULL } }; +struct NoteSubEu gZeroNoteSub = { 0 }; +struct NoteSubEu gDefaultNoteSub = { 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, { NULL } }; u16 gHeadsetPanQuantization[0x10] = { 0x40, 0x40, 0x30, 0x30, 0x20, 0x20, 0x10, 0, 0, 0, |
