summaryrefslogtreecommitdiff
path: root/src/code/sys_cmpdma.c
diff options
context:
space:
mode:
authorengineer124 <47598039+engineer124@users.noreply.github.com>2023-06-06 08:57:45 +1000
committerGitHub <noreply@github.com>2023-06-06 08:57:45 +1000
commitf92a61db27ed8ee213072df11169777c6794bc1b (patch)
tree3a0caf8d8f8456f74f78b7ceebfb4bb01c9098c2 /src/code/sys_cmpdma.c
parent8cabbb1a2bd282e0a757385aa8d23d710aaafb13 (diff)
Misc Cleanup 3 (#1268)
* begin more cleanup * more enums * typo * == * fix go.h * fix RaceDogInfo struct * PR Review * PR Suggestions * missed one * missed even more * fix params * fix number
Diffstat (limited to 'src/code/sys_cmpdma.c')
-rw-r--r--src/code/sys_cmpdma.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/code/sys_cmpdma.c b/src/code/sys_cmpdma.c
index b2a17d547..715892b49 100644
--- a/src/code/sys_cmpdma.c
+++ b/src/code/sys_cmpdma.c
@@ -2,7 +2,7 @@
#include "system_malloc.h"
typedef struct {
- union {
+ /* 0x0 */ union {
u32 dmaWord[2];
u32 dataStart;
u32 dataSize;
@@ -11,7 +11,7 @@ typedef struct {
u32 end;
} offset;
};
-} CmpDmaBuffer;
+} CmpDmaBuffer; // size = 0x8
CmpDmaBuffer sDmaBuffer;