diff options
author | Michael Panzlaff <michael.panzlaff@fau.de> | 2021-07-09 01:47:28 +0200 |
---|---|---|
committer | Michael Panzlaff <michael.panzlaff@fau.de> | 2021-08-25 18:03:48 +0200 |
commit | 5cc94282b5c8e2b991a443f9e64e91c466cb00f1 (patch) | |
tree | fea2caabd1c7adac37891d83758f413fb6cc3129 | |
parent | 4fbf785bbdfee9be474724caf8b804b0544d0f79 (diff) |
fix small error in seq header
-rw-r--r-- | include/nitro/SND_seq_shared.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/nitro/SND_seq_shared.h b/include/nitro/SND_seq_shared.h index 6ff6189c..ff73e951 100644 --- a/include/nitro/SND_seq_shared.h +++ b/include/nitro/SND_seq_shared.h @@ -72,9 +72,9 @@ struct SNDTrack { s32 wait; // 0x20 - const u8 *trackDataStart; // 0x24 - const u8 *trackDataPos; // 0x28 - const u8 *posCallStack[SND_TRACK_MAX_CALL]; // 0x34 + const u8 *base; // 0x24 + const u8 *cur; // 0x28 + const u8 *posCallStack[SND_TRACK_MAX_CALL]; // 0x2C u8 loopCount[SND_TRACK_MAX_CALL]; // 0x38 u8 callStackDepth; // 0x3B |