summaryrefslogtreecommitdiff
path: root/src/audio/note_data.c
diff options
context:
space:
mode:
authorKiritoDv <kiritodev01@gmail.com>2024-11-03 01:07:44 -0600
committerKiritoDv <kiritodev01@gmail.com>2024-11-03 01:07:44 -0600
commit2a8ac4891e8b203db807ce7e31e0567e5261eeb7 (patch)
tree744e87428cc4b460566e68e528ab28200a6f970b /src/audio/note_data.c
parent94bc6486eb8eff6e4b66a46a519dd0f21aed31d7 (diff)
Its loading without issues finally! But its still broken
Diffstat (limited to 'src/audio/note_data.c')
-rw-r--r--src/audio/note_data.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/audio/note_data.c b/src/audio/note_data.c
index 32256fc2..8409dbd0 100644
--- a/src/audio/note_data.c
+++ b/src/audio/note_data.c
@@ -200,10 +200,10 @@ u8 gDefaultShortNoteGateTimeTable[] = {
};
EnvelopePoint gDefaultEnvelope[] = {
- { 4, 32000 },
- { 1000, 32000 },
- { ADSR_HANG, 0 },
- { ADSR_DISABLE, 0 },
+ { BE16SWAP_CONST(4), BE16SWAP_CONST(32000) },
+ { BE16SWAP_CONST(1000), BE16SWAP_CONST(32000) },
+ { BE16SWAP_CONST(ADSR_HANG), 0 },
+ { BE16SWAP_CONST(ADSR_DISABLE), 0 },
};
NoteSubEu gZeroNoteSub = { 0 };