summaryrefslogtreecommitdiff
path: root/include/JSystem/J2DGraph
diff options
context:
space:
mode:
authorlepelog <25211966+lepelog@users.noreply.github.com>2021-12-13 11:31:40 +0100
committerlepelog <25211966+lepelog@users.noreply.github.com>2021-12-13 11:31:40 +0100
commite17003ab29a830b7883da6f8a2c732db4721bd78 (patch)
tree45ff6f887b34a1d1c5b4ec0958b5b797fcc87485 /include/JSystem/J2DGraph
parentfdd13a5797f5d9d4b36ff6517f5c0a9d8748a826 (diff)
offset comments
Diffstat (limited to 'include/JSystem/J2DGraph')
-rw-r--r--include/JSystem/J2DGraph/J2DManage.h13
1 files changed, 7 insertions, 6 deletions
diff --git a/include/JSystem/J2DGraph/J2DManage.h b/include/JSystem/J2DGraph/J2DManage.h
index 363d791fc2..96a9e5ebc0 100644
--- a/include/JSystem/J2DGraph/J2DManage.h
+++ b/include/JSystem/J2DGraph/J2DManage.h
@@ -5,21 +5,22 @@
#include "dolphin/types.h"
struct J2DResReference {
- u16 mCount;
- u16 mOffsets[1];
+ /* 0x00 */ u16 mCount;
+ /* 0x02 */ u16 mOffsets[1];
+
/* 8030CF10 */ s8* getResReference(u16) const;
/* 8030CF44 */ char* getName(u16) const;
};
struct J2DataManageLink {
- void* mData;
- char* mName;
- J2DataManageLink* mNext;
+ /* 0x00 */ void* mData;
+ /* 0x04 */ char* mName;
+ /* 0x08 */ J2DataManageLink* mNext;
};
class J2DDataManage {
private:
- J2DataManageLink* mList;
+ /* 0x00 */ J2DataManageLink* mList;
public:
/* 8030CE18 */ void* get(char const*);